{% set container = entity %} {% set entity_view = "coverage" %} {% set entity_type = "container" %} {% import "entity_macros.html" as entity_macros %} {% extends "entity_base.html" %} {% block entity_main %}
{{ "{:,}".format(container._stats.total) }}
Known Releases
{% if container._stats.total >= 1 %} {% set frac_kbart = container._stats.in_kbart/container._stats.total %} {% set frac_preserved = container._stats.is_preserved/container._stats.total %} {% set frac_web = container._stats.in_web/container._stats.total %}
{{ (frac_web*100)|int }}%
{{ "{:,}".format(container._stats.in_web) }} preserved and available (bright)

{{ (frac_preserved*100)|int }}%
{{ "{:,}".format(container._stats.is_preserved) }} preserved at all (bright or dark)

{{ (frac_kbart*100)|int }}%
{{ "{:,}".format(container._stats.in_kbart ) }} preserved by Keeper (dark)
{% endif %}
{% if container._stats.total >= 1 %}

Perpetual Access Coverage by Year

Download as JSON
{% endif %} {% endblock %}