enrich entries

This commit is contained in:
kempersc 2025-12-26 21:41:18 +01:00
parent ca219340f2
commit 6af5009444
334 changed files with 9789 additions and 1070 deletions

View file

@ -1312,6 +1312,129 @@ def normalize_custodian_type(type_value: str) -> str | None:
return None
def extract_institution_slug_from_query(query: str) -> str | None:
"""Extract institution name from query and convert to slug format for filtering.
This function identifies when a user is asking about staff at a SPECIFIC institution
and extracts the institution name, converting it to a slug format that matches
the custodian_slug field in Qdrant's heritage_persons collection.
Args:
query: User's natural language question
Returns:
Institution slug (e.g., 'het-utrechts-archief', 'nationaal-archief') or None
Examples:
>>> extract_institution_slug_from_query("welke data expert werken voor Het Utrechts Archief?")
'het-utrechts-archief'
>>> extract_institution_slug_from_query("who works at Nationaal Archief?")
'nationaal-archief'
>>> extract_institution_slug_from_query("medewerkers van het Rijksmuseum")
'rijksmuseum'
>>> extract_institution_slug_from_query("wie zijn de curatoren?") # No specific institution
None
"""
# Known Dutch heritage institutions with their slug mappings
# This helps with exact matching for common institutions
KNOWN_INSTITUTIONS = {
# Archives
'het utrechts archief': 'het-utrechts-archief',
'utrechts archief': 'het-utrechts-archief',
'nationaal archief': 'nationaal-archief',
'stadsarchief amsterdam': 'stadsarchief-amsterdam',
'stadsarchief rotterdam': 'stadsarchief-rotterdam',
'noord-hollands archief': 'noord-hollands-archief',
'gelders archief': 'gelders-archief',
'brabants historisch informatie centrum': 'brabants-historisch-informatie-centrum',
'bhic': 'brabants-historisch-informatie-centrum',
'regionaal archief tilburg': 'regionaal-archief-tilburg',
'zeeuws archief': 'zeeuws-archief',
'tresoar': 'tresoar',
'drents archief': 'drents-archief',
'historisch centrum overijssel': 'historisch-centrum-overijssel',
'erfgoed leiden': 'erfgoed-leiden-en-omstreken',
# Museums
'rijksmuseum': 'rijksmuseum',
'van gogh museum': 'van-gogh-museum',
'stedelijk museum': 'stedelijk-museum-amsterdam',
'mauritshuis': 'mauritshuis',
'kröller-müller': 'kroller-muller-museum',
'kroller-muller': 'kroller-muller-museum',
'boijmans van beuningen': 'museum-boijmans-van-beuningen',
'eye filmmuseum': 'eye-filmmuseum',
'eye': 'eye-filmmuseum',
'tropenmuseum': 'tropenmuseum',
'nederlands openluchtmuseum': 'nederlands-openluchtmuseum',
'openluchtmuseum': 'nederlands-openluchtmuseum',
# Libraries
'koninklijke bibliotheek': 'koninklijke-bibliotheek',
'kb': 'koninklijke-bibliotheek',
'universiteitsbibliotheek amsterdam': 'universiteitsbibliotheek-amsterdam',
'uba': 'universiteitsbibliotheek-amsterdam',
'universiteitsbibliotheek leiden': 'universiteitsbibliotheek-leiden',
# Other heritage organizations
'beeld en geluid': 'beeld-en-geluid',
'niod': 'niod',
'rkd': 'rkd',
'atria': 'atria',
'meertens instituut': 'meertens-instituut',
}
query_lower = query.lower()
# First check for known institutions (exact substring match)
for name, slug in KNOWN_INSTITUTIONS.items():
if name in query_lower:
logger.debug(f"Matched known institution: '{name}' -> '{slug}'")
return slug
# Patterns to extract institution names from queries
# These patterns capture institution names mentioned with prepositions
patterns = [
# Dutch patterns
r'(?:bij|voor|van|werken\s+(?:bij|voor)|medewerkers\s+(?:van|bij))\s+(?:het\s+)?([A-Z][a-zA-Z\s\-\']+(?:Archief|Museum|Bibliotheek|Instituut|Centrum))',
r'(?:bij|voor|van)\s+((?:Het\s+)?[A-Z][a-zA-Z\s\-\']+)',
# English patterns
r'(?:at|for|from|of|works?\s+(?:at|for))\s+(?:the\s+)?([A-Z][a-zA-Z\s\-\']+(?:Archive|Museum|Library|Institute|Center|Centre))',
r'(?:at|for|from)\s+((?:The\s+)?[A-Z][a-zA-Z\s\-\']+)',
]
for pattern in patterns:
match = re.search(pattern, query, re.IGNORECASE)
if match:
institution_name = match.group(1).strip()
# Skip if it's just a generic term
generic_terms = {'het', 'de', 'een', 'the', 'a', 'an', 'museum', 'archief', 'bibliotheek'}
if institution_name.lower() in generic_terms:
continue
# Convert to slug format
# 1. Normalize unicode and remove diacritics
import unicodedata
normalized = unicodedata.normalize('NFD', institution_name)
ascii_name = ''.join(c for c in normalized if unicodedata.category(c) != 'Mn')
# 2. Convert to lowercase
slug = ascii_name.lower()
# 3. Remove punctuation except hyphens
slug = re.sub(r"[''`\",.:;!?()[\]{}]", '', slug)
# 4. Replace spaces with hyphens
slug = re.sub(r'[\s_]+', '-', slug)
# 5. Remove multiple consecutive hyphens
slug = re.sub(r'-+', '-', slug).strip('-')
if len(slug) >= 3: # Minimum reasonable slug length
logger.debug(f"Extracted institution from query: '{institution_name}' -> '{slug}'")
return slug
return None
# =============================================================================
# 2. DSPy MODULES
# =============================================================================
@ -1444,6 +1567,14 @@ class HeritageQueryRouter(dspy.Module):
f"Fallback: extracted custodian type from query: '{target_custodian_type}'"
)
# Extract target institution slug for person queries (enables filtering by institution)
# This is critical for queries like "welke experts werken voor Het Utrechts Archief?"
target_custodian_slug = None
if entity_type == 'person':
target_custodian_slug = extract_institution_slug_from_query(question)
if target_custodian_slug:
logger.info(f"Extracted target institution for person query: '{target_custodian_slug}'")
# Build prediction with all fields (including validated schema-aware fields)
prediction = Prediction(
intent=result.intent,
@ -1456,6 +1587,8 @@ class HeritageQueryRouter(dspy.Module):
target_role_category=target_role_category,
target_staff_role=target_staff_role,
target_custodian_type=target_custodian_type,
# Institution filter for person queries
target_custodian_slug=target_custodian_slug,
)
return prediction
@ -3365,12 +3498,14 @@ class HeritageRAGPipeline(dspy.Module):
# Use schema-aware filters from DSPy router when available
target_role_category = getattr(routing, 'target_role_category', None)
target_custodian_type = getattr(routing, 'target_custodian_type', None)
target_custodian_slug = getattr(routing, 'target_custodian_slug', None)
# Only pass non-empty, non-unknown values
effective_role_category = target_role_category if target_role_category not in (None, "", "UNKNOWN", "UNSPECIFIED") else None
effective_custodian_type = target_custodian_type if target_custodian_type not in (None, "", "UNKNOWN", "UNSPECIFIED") else None
effective_custodian_slug = target_custodian_slug if target_custodian_slug not in (None, "") else None
logger.info(f"Performing PERSON retrieval for: {resolved_question[:50]}... (role_category={effective_role_category}, custodian_type={effective_custodian_type})")
logger.info(f"Performing PERSON retrieval for: {resolved_question[:50]}... (role_category={effective_role_category}, custodian_type={effective_custodian_type}, custodian_slug={effective_custodian_slug})")
# Wrap retrieval with cost tracking
if tracker:
@ -3381,6 +3516,7 @@ class HeritageRAGPipeline(dspy.Module):
using=embedding_model,
target_role_category=effective_role_category,
target_custodian_type=effective_custodian_type,
filter_custodian=effective_custodian_slug,
)
retrieval_timing.result_count = len(person_results) if person_results else 0
timing_breakdown["person_retrieval_ms"] = retrieval_timing.duration_ms
@ -3391,6 +3527,7 @@ class HeritageRAGPipeline(dspy.Module):
using=embedding_model,
target_role_category=effective_role_category,
target_custodian_type=effective_custodian_type,
filter_custodian=effective_custodian_slug,
)
if person_results:
@ -3815,9 +3952,20 @@ class HeritageRAGPipeline(dspy.Module):
detected_query_type = "person"
logger.info(f"Detected PERSON query for streaming: {resolved_question[:50]}...")
# Extract target institution slug for filtering (if query mentions a specific institution)
target_custodian_slug = getattr(routing, 'target_custodian_slug', None)
effective_custodian_slug = target_custodian_slug if target_custodian_slug not in (None, "") else None
if effective_custodian_slug:
logger.info(f"Filtering person search by custodian: {effective_custodian_slug}")
# Search for persons
if hasattr(self.retriever, 'search_persons'):
person_results = self.retriever.search_persons(query=resolved_question, k=10, using=embedding_model)
person_results = self.retriever.search_persons(
query=resolved_question,
k=10,
using=embedding_model,
filter_custodian=effective_custodian_slug,
)
if person_results:
context_parts.append("\n[RETRIEVED STAFF/PEOPLE - Real data from heritage database]:")

File diff suppressed because it is too large Load diff

View file

@ -274,3 +274,28 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Ústav pro českou literaturu AV ČR, v. v. i. - Knihovna official
youtube_search_timestamp: '2025-12-09T09:33:43.172368+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:57:56.030319+00:00'
source_url: https://ucl.cas.cz/katalogy-knihoven
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://ucl.cas.cz/wp-content/uploads/2019/10/cropped-UCL-logo_00_Piktogram_RGB_Cerna-180x180.png
source_url: https://ucl.cas.cz/katalogy-knihoven
css_selector: '[document] > html.objectfit.object-fit > body > link:nth-of-type(20)'
retrieved_on: '2025-12-26T15:57:56.030319+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://ucl.cas.cz/wp-content/uploads/2021/11/ucl_hp-22.jpg
source_url: https://ucl.cas.cz/katalogy-knihoven
css_selector: '[document] > html.objectfit.object-fit > body > meta:nth-of-type(12)'
retrieved_on: '2025-12-26T15:57:56.030319+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -237,3 +237,22 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Ústav pro soudobé dějiny AV ČR, v. v. i. - Knihovna official
youtube_search_timestamp: '2025-12-09T09:33:44.514831+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:58:35.581116+00:00'
source_url: https://katalog.lib.cas.cz/USD
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.lib.cas.cz/USD/themes/knav_katalog/images/vufind-favicon.ico?_=1636405137
source_url: https://katalog.lib.cas.cz/USD
css_selector: '[document] > html > head > link:nth-of-type(8)'
retrieved_on: '2025-12-26T15:58:35.581116+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -243,3 +243,22 @@ youtube_status: NOT_FOUND
youtube_search_query: Ústav pro studium totalitních režimů - Knihovna Jána Langoše
official
youtube_search_timestamp: '2025-12-09T09:33:45.173455+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:58:43.584709+00:00'
source_url: https://koha-intra.ustrcr.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://koha-intra.ustrcr.cz/intranet-tmpl/prog/img/favicon.ico
source_url: https://koha-intra.ustrcr.cz
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-26T15:58:43.584709+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -1288,3 +1288,28 @@ youtube_enrichment:
comments: []
thumbnail_url: https://i.ytimg.com/vi/1Q7gtENw6ag/hqdefault.jpg
status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:58:49.730260+00:00'
source_url: https://www.nm.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.nm.cz/file/ad1e3d8b659d4c5536c61a5d693fed81/4/favicon/nmicon.png
source_url: https://www.nm.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T15:58:49.730260+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.nm.cz/file/eaf1feaf5af2a554f1fc5e4b07f5cfda/3497/HB%20NM_web.jpg
source_url: https://www.nm.cz
css_selector: '[document] > html > head > meta:nth-of-type(4)'
retrieved_on: '2025-12-26T15:58:49.730260+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -234,3 +234,28 @@ youtube_status: NOT_FOUND
youtube_search_query: Národní muzeum - Historické muzeum - Oddělení dějin tělesné
výchovy a sportu - knihovna official
youtube_search_timestamp: '2025-12-09T09:33:46.515054+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:58:55.774922+00:00'
source_url: https://www.nm.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.nm.cz/file/ad1e3d8b659d4c5536c61a5d693fed81/4/favicon/nmicon.png
source_url: https://www.nm.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T15:58:55.774922+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.nm.cz/file/eaf1feaf5af2a554f1fc5e4b07f5cfda/3497/HB%20NM_web.jpg
source_url: https://www.nm.cz
css_selector: '[document] > html > head > meta:nth-of-type(4)'
retrieved_on: '2025-12-26T15:58:55.774922+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -260,3 +260,36 @@ youtube_status: NOT_FOUND
youtube_search_query: Národní muzeum - Knihovna Národního muzea - oddělení zámeckých
knihoven official
youtube_search_timestamp: '2025-12-09T09:33:47.182845+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:59:01.728186+00:00'
source_url: https://www.nm.cz/knihovna-narodniho-muzea/oddeleni-zameckych-knihoven#o-nas
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.nm.cz/img/logo.png
source_url: https://www.nm.cz/knihovna-narodniho-muzea/oddeleni-zameckych-knihoven#o-nas
css_selector: '#page > header > div.section > div.header > div.logo > a > img'
retrieved_on: '2025-12-26T15:59:01.728186+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Národní muzeum
- claim_type: favicon_url
claim_value: https://www.nm.cz/file/ad1e3d8b659d4c5536c61a5d693fed81/4/favicon/nmicon.png
source_url: https://www.nm.cz/knihovna-narodniho-muzea/oddeleni-zameckych-knihoven#o-nas
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T15:59:01.728186+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.nm.cz/file/8e97c63072517a2391247e0f2350df5a/9231/DSC_0005_narovnani_orez_HB_studovna_zahlavi_web.jpg
source_url: https://www.nm.cz/knihovna-narodniho-muzea/oddeleni-zameckych-knihoven#o-nas
css_selector: '[document] > html > head > meta:nth-of-type(4)'
retrieved_on: '2025-12-26T15:59:01.728186+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -241,3 +241,22 @@ youtube_status: NOT_FOUND
youtube_search_query: Národní pedagogické muzeum a knihovna J. A. Komenského - Pedagogická
knihovna J. A. Komenského official
youtube_search_timestamp: '2025-12-09T09:33:48.512429+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:59:12.543753+00:00'
source_url: https://katalog.npmk.gov.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.npmk.gov.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.npmk.gov.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T15:59:12.543753+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -252,3 +252,32 @@ youtube_status: NOT_FOUND
youtube_search_query: Vojenský historický ústav Praha - Odbor historicko dokumentační
- Oddělení vojenských knihoven official
youtube_search_timestamp: '2025-12-09T09:33:49.189442+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:59:27.885123+00:00'
source_url: https://vhupraha.kpsys.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://vhupraha.kpsys.cz/custom/design/logo3i.png
source_url: https://vhupraha.kpsys.cz
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > div > a > img'
retrieved_on: '2025-12-26T15:59:27.885123+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://vhupraha.kpsys.cz/favicon.png?v=2.3.0-32050
source_url: https://vhupraha.kpsys.cz
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T15:59:27.885123+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -237,3 +237,28 @@ youtube_status: NOT_FOUND
youtube_search_query: Kancelář prezidenta České republiky - Odbor spisové a archivní
služby - Archivy PH a KPR - Odborná knihovna APH a AKPR official
youtube_search_timestamp: '2025-12-09T09:33:49.848641+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:59:50.552957+00:00'
source_url: https://www.prazskyhradarchiv.cz/cs/archivph
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.prazskyhradarchiv.cz/img/safari-pinned-tab.svg
source_url: https://www.prazskyhradarchiv.cz/cs/archivph
css_selector: '[document] > html.js > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T15:59:50.552957+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.prazskyhradarchiv.cz/img/social-media-logo-aph.png
source_url: https://www.prazskyhradarchiv.cz/cs/archivph
css_selector: '[document] > html.js > head > meta:nth-of-type(14)'
retrieved_on: '2025-12-26T15:59:50.552957+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -222,3 +222,22 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Krajský soud v Praze - Knihovna official
youtube_search_timestamp: '2025-12-09T09:33:50.516476+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T15:59:59.331761+00:00'
source_url: https://msp.gov.cz/web/krajsky-soud-v-praze
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://msp.gov.cz/o/justicecz-js-theme/images/favicon.ico
source_url: https://msp.gov.cz/web/krajsky-soud-v-praze
css_selector: '[document] > html.ltr.yui3-js-enabled > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T15:59:59.331761+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -244,3 +244,32 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Ministerstvo financí ČR - Odborná knihovna MF official
youtube_search_timestamp: '2025-12-09T09:33:51.176879+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:00:07.584521+00:00'
source_url: https://portaro.mfcr.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://portaro.mfcr.cz/custom/design/logo_mf_portaro.png
source_url: https://portaro.mfcr.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > div > a > img'
retrieved_on: '2025-12-26T16:00:07.584521+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: O knihovně
- claim_type: favicon_url
claim_value: https://portaro.mfcr.cz/favicon.png?v=2.3.0-32050
source_url: https://portaro.mfcr.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:00:07.584521+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -239,3 +239,22 @@ youtube_status: NOT_FOUND
youtube_search_query: Ministerstvo kultury ČR - Odbor umění, knihoven, kulturních
a kreativních odvětví official
youtube_search_timestamp: '2025-12-09T09:33:51.831473+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:00:14.565788+00:00'
source_url: https://mk.gov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://mk.gov.cz/custom/img/favicon.ico
source_url: https://mk.gov.cz
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-26T16:00:14.565788+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -235,3 +235,28 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Úřad vlády České republiky - Knihovna official
youtube_search_timestamp: '2025-12-09T09:33:52.495167+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:00:19.128112+00:00'
source_url: https://vlada.gov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vlada.gov.cz/images/favicon-512.png
source_url: https://vlada.gov.cz
css_selector: '[document] > html.header-fixed > head > link:nth-of-type(12)'
retrieved_on: '2025-12-26T16:00:19.128112+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 512x512
- claim_type: og_image_url
claim_value: https://vlada.gov.cz/images/og-home-20251217.jpg?v=6
source_url: https://vlada.gov.cz
css_selector: '[document] > html.header-fixed > head > meta:nth-of-type(20)'
retrieved_on: '2025-12-26T16:00:19.128112+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -211,3 +211,22 @@ location:
postal_code: 517 32
street_address: Přepychy 125
normalization_timestamp: '2025-12-09T10:53:04.699131+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:00:29.931784+00:00'
source_url: https://prepychy.cz/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://prepychy.cz/favicon/apple-icon-180x180.png
source_url: https://prepychy.cz/knihovna
css_selector: '[document] > html.js > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:00:29.931784+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 13

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-PRE-L-OKPNL
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-PRE-L-OKPNL
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-PRE-L-OKPNL
ghcid_numeric: 14770606362091221765
valid_from: '2025-12-06T23:37:24.489078+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 503 02
street_address: Školská 279
normalization_timestamp: '2025-12-09T10:53:04.728640+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:00:42.305043+00:00'
source_url: https://kmhk.tritius.cz/library/predmerice
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://kmhk.tritius.cz/apple-touch-icon-180x180.png
source_url: https://kmhk.tritius.cz/library/predmerice
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:00:42.305043+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -229,3 +229,22 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Státní okresní archiv Prostějov official
youtube_search_timestamp: '2025-12-09T09:33:54.514696+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:00:53.960152+00:00'
source_url: http://www.archives.cz/web/soka/prostejov/o_archivu
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.archives.cz/web/favicon/safari-pinned-tab.svg
source_url: http://www.archives.cz/web/soka/prostejov/o_archivu
css_selector: '[document] > html.js.no-touchevents > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:00:53.960152+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 12

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-PRO-L-OKP-obecni_knihovna_prosecne
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-PRO-L-OKP-obecni_knihovna_prosecne
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-PRO-L-OKP-obecni_knihovna_prosecne
ghcid_numeric: 13788965130159281522
valid_from: '2025-12-06T23:37:35.679586+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 543 73
street_address: Prosečné 24
normalization_timestamp: '2025-12-09T10:53:04.786760+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:02.182208+00:00'
source_url: https://trutnov.tritius.cz/library/prosecne
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/prosecne
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:01:02.182208+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-PRO-L-OKP
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-PRO-L-OKP
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-PRO-L-OKP
ghcid_numeric: 8952662731625077050
valid_from: '2025-12-06T23:37:35.358127+00:00'
@ -207,3 +208,22 @@ location:
postal_code: 549 08
street_address: Provodov 74
normalization_timestamp: '2025-12-09T10:53:04.871432+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:13.489461+00:00'
source_url: https://www.provodovsonov.cz/zivot-v-obci/knihovny
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.provodovsonov.cz/skins/provodovsonov.cz_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.provodovsonov.cz/zivot-v-obci/knihovny
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:01:13.489461+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -215,3 +215,22 @@ location:
postal_code: 507 12
street_address: Radim 41
normalization_timestamp: '2025-12-09T10:53:04.898804+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:24.396596+00:00'
source_url: https://katalog.knihovna.jicin.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:01:24.396596+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ROK-L-MIKSZK
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ROK-L-MIKSZK
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ROK-L-MIKSZK
ghcid_numeric: 7177529473421463726
valid_from: '2025-12-06T23:37:26.725933+00:00'
@ -217,3 +218,22 @@ location:
postal_code: 517 61
street_address: nám. T.G.Masaryka 68
normalization_timestamp: '2025-12-09T10:53:04.918951+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:34.188240+00:00'
source_url: https://info.rokytnicevoh.cz/kultura-a-volny-cas/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://info.rokytnicevoh.cz/skins/infokulturarokytnice.cz_lego2/favicons/safari-pinned-tab.svg
source_url: https://info.rokytnicevoh.cz/kultura-a-volny-cas/knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:01:34.188240+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ROK-L-OKVBVOH
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ROK-L-OKVBVOH
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ROK-L-OKVBVOH
ghcid_numeric: 12568820049282228068
valid_from: '2025-12-06T23:37:35.562366+00:00'
@ -210,3 +211,28 @@ location:
postal_code: 517 61
street_address: Bartošovice v O. h. 35
normalization_timestamp: '2025-12-09T10:53:04.947154+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:42.685309+00:00'
source_url: https://www.bartosovice.eu/sluzby
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.bartosovice.eu/safari-pinned-tab.svg
source_url: https://www.bartosovice.eu/sluzby
css_selector: '[document] > html.sizes.customelements > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:01:42.685309+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.bartosovice.eu/www.bartosovice.eu/images/logo_znak.png
source_url: https://www.bartosovice.eu/sluzby
css_selector: '[document] > html.sizes.customelements > head > meta:nth-of-type(10)'
retrieved_on: '2025-12-26T16:01:42.685309+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-RTY-L-MKRVP
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-RTY-L-MKRVP
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-RTY-L-MKRVP
ghcid_numeric: 2802367803403928390
valid_from: '2025-12-06T23:37:20.381536+00:00'
@ -219,3 +220,22 @@ location:
postal_code: 542 33
street_address: nám. Horníků 440
normalization_timestamp: '2025-12-09T10:53:05.017771+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:51.540273+00:00'
source_url: https://vck.tritius.cz/library/rtyne
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vck.tritius.cz/apple-touch-icon-180x180.png
source_url: https://vck.tritius.cz/library/rtyne
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:01:51.540273+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-RUD-L-MKR
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-RUD-L-MKR
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-RUD-L-MKR
ghcid_numeric: 18400465961853835707
valid_from: '2025-12-06T23:37:35.685003+00:00'
@ -236,3 +237,22 @@ location:
postal_code: 543 72
street_address: Rudník 51
normalization_timestamp: '2025-12-09T10:53:05.068238+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:01:58.749045+00:00'
source_url: https://trutnov.tritius.cz/library/rudnik
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/rudnik
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:01:58.749045+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-RYC-E-VOSSPSZIS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-RYC-E-VOSSPSZIS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-RYC-E-VOSSPSZIS
ghcid_numeric: 15071505157304399009
valid_from: '2025-12-08T11:21:26.749295+00:00'
@ -223,3 +224,30 @@ location:
postal_code: 516 01
street_address: U stadionu 1166
normalization_timestamp: '2025-12-09T10:53:05.119108+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:02:17.894598+00:00'
source_url: https://www.vosrk.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vosrk.cz/wp-content/uploads/2025/02/cropped-vosrk-180x180.png
source_url: https://www.vosrk.cz
css_selector: '[document] > html.wf-roboto-n1-active.wf-roboto-i1-active > head
> link:nth-of-type(83)'
retrieved_on: '2025-12-26T16:02:17.894598+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://vosrk.cz/wp-content/uploads/2023/04/vos-sps-OG.jpg
source_url: https://www.vosrk.cz
css_selector: '[document] > html.wf-roboto-n1-active.wf-roboto-i1-active > head
> meta:nth-of-type(12)'
retrieved_on: '2025-12-26T16:02:17.894598+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -181,3 +181,22 @@ wikidata_enrichment:
enrichment_version: 2.1.0
instance_of:
- Q114617264
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:02:23.300700+00:00'
source_url: https://rychnov.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://rychnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://rychnov.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:02:23.300700+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -36,13 +36,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-RYC-L-MKRNKPDV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-RYC-L-MKRNKPDV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-RYC-L-MKRNKPDV
ghcid_numeric: 9348641783794840588
valid_from: '2025-12-06T23:37:42.524855+00:00'
@ -100,8 +101,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.95
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: Městská knihovna Rychnov nad Kněžnou - pobočka Dlouhá Ves
@ -212,3 +213,22 @@ location:
geonames_id: 3066503
geonames_name: Rychnov nad Kněžnou
feature_code: PPL
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:02:34.777551+00:00'
source_url: https://www.kulturark.cz/knihovna/knihovny-v-regionu
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.kulturark.cz/images/layout/favicon.svg
source_url: https://www.kulturark.cz/knihovna/knihovny-v-regionu
css_selector: '[document] > html.show--consent.n3tcc--loaded > head > link:nth-of-type(18)'
retrieved_on: '2025-12-26T16:02:34.777551+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -216,3 +216,22 @@ location:
postal_code: 516 01
street_address: Roveň 71
normalization_timestamp: '2025-12-09T10:53:05.221003+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:02:46.151088+00:00'
source_url: https://www.kulturark.cz/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.kulturark.cz/images/layout/favicon.svg
source_url: https://www.kulturark.cz/knihovna
css_selector: '[document] > html.show--consent.n3tcc--loaded > head > link:nth-of-type(22)'
retrieved_on: '2025-12-26T16:02:46.151088+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-RYC-L-MKT
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-RYC-L-MKT
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-RYC-L-MKT
ghcid_numeric: 18096606550178656123
valid_from: '2025-12-06T23:37:35.596396+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 516 01
street_address: Třebešov 47
normalization_timestamp: '2025-12-09T10:53:05.249096+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:03:02.528688+00:00'
source_url: https://trebesov.cz/?id=10052&lang=cze
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trebesov.cz/wp-content/uploads/2017/05/favicon180.png
source_url: https://trebesov.cz/?id=10052&lang=cze
css_selector: '[document] > html.js > head > link:nth-of-type(3)'
retrieved_on: '2025-12-26T16:03:02.528688+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -211,3 +211,22 @@ location:
postal_code: 552 25
street_address: Rychnovek 50
normalization_timestamp: '2025-12-09T10:53:05.276231+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:03:13.356108+00:00'
source_url: https://jaromer.tritius.cz/library/rychnovek
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://jaromer.tritius.cz/apple-touch-icon-180x180.png
source_url: https://jaromer.tritius.cz/library/rychnovek
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:03:13.356108+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -211,3 +211,28 @@ location:
postal_code: 516 01
street_address: Jiráskova 2
normalization_timestamp: '2025-12-09T10:53:05.354698+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:03:33.600823+00:00'
source_url: https://www.moh.cz/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.moh.cz/src/Frontend/Themes/moh/Core/Layout/img/favicon/safari-pinned-tab.svg
source_url: https://www.moh.cz/knihovna
css_selector: '[document] > html.js > head > link:nth-of-type(6)'
retrieved_on: '2025-12-26T16:03:33.600823+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.moh.cz/src/Frontend/Themes/moh/Core/Layout/img/og-image.jpg
source_url: https://www.moh.cz/knihovna
css_selector: '[document] > html.js > head > meta:nth-of-type(13)'
retrieved_on: '2025-12-26T16:03:33.600823+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SAM-L-MLKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SAM-L-MLKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SAM-L-MLKS
ghcid_numeric: 16633193400531270890
valid_from: '2025-12-06T23:37:35.191467+00:00'
@ -210,3 +211,30 @@ location:
postal_code: 506 01
street_address: Samšina 54
normalization_timestamp: '2025-12-09T10:53:05.403977+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:03:47.000983+00:00'
source_url: https://knihovnasamsina.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnasamsina.webk.cz/themes/new/orange/logo1.png
source_url: https://knihovnasamsina.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-26T16:03:47.000983+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnasamsina.webk.cz/themes/new/favicon.ico
source_url: https://knihovnasamsina.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T16:03:47.000983+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -210,3 +210,32 @@ location:
geocoding_timestamp: '2025-12-09T21:45:48.770026+00:00'
geocoding_method: CITY_NAME_LOOKUP
geonames_matched_name: Praskačka
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:04:05.961483+00:00'
source_url: https://www.praskacka.cz/informace/knihovny
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.praskacka.cz/content/images/znak.svg
source_url: https://www.praskacka.cz/informace/knihovny
css_selector: '#header > div.container.position-relative > nav.navbar.navbar-expand-md
> div.d-flex.flex-grow-1 > a.navbar-brand > span.navbar-brandwrapper.d-flex
> img'
retrieved_on: '2025-12-26T16:04:05.961483+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Logo obce Praskačka
- claim_type: favicon_url
claim_value: https://www.praskacka.cz/apple-touch-icon.png
source_url: https://www.praskacka.cz/informace/knihovny
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-26T16:04:05.961483+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 4

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SKR-L-OKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SKR-L-OKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SKR-L-OKS
ghcid_numeric: 6132472354592741805
valid_from: '2025-12-06T23:37:35.059258+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 503 52
street_address: Skřivany 39
normalization_timestamp: '2025-12-09T10:53:05.478123+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:04:20.199015+00:00'
source_url: https://www.skrivany.cz/obec/obecni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.skrivany.cz/skins/skrivany.cz_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.skrivany.cz/obec/obecni-knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:04:20.199015+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -215,3 +215,22 @@ location:
postal_code: 517 03
street_address: Skuhrov nad Bělou 84
normalization_timestamp: '2025-12-09T10:53:05.502360+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:04:31.403156+00:00'
source_url: https://rychnov.tritius.cz/library/skuhrov
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://rychnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://rychnov.tritius.cz/library/skuhrov
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:04:31.403156+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -211,3 +211,22 @@ location:
postal_code: 506 01
street_address: Slatiny 64
normalization_timestamp: '2025-12-09T10:53:05.529759+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:04:44.618324+00:00'
source_url: https://katalog.knihovna.jicin.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:04:44.618324+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SLA-L-OKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SLA-L-OKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SLA-L-OKS
ghcid_numeric: 5310272173880929570
valid_from: '2025-12-06T23:37:35.377672+00:00'
@ -210,3 +211,28 @@ location:
postal_code: 549 01
street_address: Slavoňov
normalization_timestamp: '2025-12-09T10:53:05.556227+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:04:58.487546+00:00'
source_url: https://www.slavonov.cz/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.slavonov.cz/images/local/icons/favicon.svg
source_url: https://www.slavonov.cz/knihovna
css_selector: '[document] > html.no-js > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:04:58.487546+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.slavonov.cz/images/local/v-202405150920/logo-social-networks.jpg
source_url: https://www.slavonov.cz/knihovna
css_selector: '[document] > html.no-js > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-26T16:04:58.487546+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SLA-L-OKVSNZ
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SLA-L-OKVSNZ
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SLA-L-OKVSNZ
ghcid_numeric: 5520778493570311243
valid_from: '2025-12-06T23:37:35.576138+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 517 56
street_address: Slatina nad Zdobnicí 38
normalization_timestamp: '2025-12-09T10:53:05.584151+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:05:06.765555+00:00'
source_url: https://rychnov.tritius.cz/library/slatinanz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://rychnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://rychnov.tritius.cz/library/slatinanz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:05:06.765555+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SMI-L-MKL
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SMI-L-MKL
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SMI-L-MKL
ghcid_numeric: 12119049361221263148
valid_from: '2025-12-06T23:37:24.479057+00:00'
@ -210,3 +211,28 @@ location:
postal_code: 503 03
street_address: Lejšovka 52
normalization_timestamp: '2025-12-09T10:53:05.609523+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:05:20.839566+00:00'
source_url: https://www.lejsovka.cz/obec/obecni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.lejsovka.cz/www//cache/images-favicon-180-180.png
source_url: https://www.lejsovka.cz/obec/obecni-knihovna
css_selector: '[document] > html.wide.wow-animation > head > link'
retrieved_on: '2025-12-26T16:05:20.839566+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://www.lejsovka.cz/www//cache/images-logo-256-256.png
source_url: https://www.lejsovka.cz/obec/obecni-knihovna
css_selector: '[document] > html.wide.wow-animation > head > meta:nth-of-type(16)'
retrieved_on: '2025-12-26T16:05:20.839566+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SMI-L-OKB
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SMI-L-OKB
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SMI-L-OKB
ghcid_numeric: 17810940777457472457
valid_from: '2025-12-06T23:37:35.076026+00:00'
@ -210,3 +211,28 @@ location:
postal_code: 503 06
street_address: Benátky
normalization_timestamp: '2025-12-09T10:53:05.637675+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:05:45.212014+00:00'
source_url: https://oubenatky.cz/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://oubenatky.cz/wp-content/uploads/2024/03/cropped-Benatky_HK_vlajka-180x180.jpg
source_url: https://oubenatky.cz/knihovna
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:05:45.212014+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://oubenatky.cz/wp-content/uploads/2024/03/pile-of-books-e1710705294285.jpg
source_url: https://oubenatky.cz/knihovna
css_selector: '[document] > html > head > meta:nth-of-type(12)'
retrieved_on: '2025-12-26T16:05:45.212014+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SMI-L-OKH
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SMI-L-OKH
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SMI-L-OKH
ghcid_numeric: 17644853589982377465
valid_from: '2025-12-06T23:37:35.073012+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 503 03
street_address: Habřina 28
normalization_timestamp: '2025-12-09T10:53:05.680632+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:05:33.967745+00:00'
source_url: https://www.habrina.cz/obecni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.habrina.cz/image.php?nid=1074&oid=11815252
source_url: https://www.habrina.cz/obecni-knihovna
css_selector: '[document] > html > head > link:nth-of-type(12)'
retrieved_on: '2025-12-26T16:05:33.967745+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SMI-L-OKVS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SMI-L-OKVS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SMI-L-OKVS
ghcid_numeric: 12020753144120539021
valid_from: '2025-12-06T23:37:35.064883+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 503 03
street_address: Skalice 32
normalization_timestamp: '2025-12-09T10:53:05.751884+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:05:40.868543+00:00'
source_url: https://www.skalice.info/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.skalice.info/image.php?nid=17657&oid=7080449
source_url: https://www.skalice.info/knihovna
css_selector: '[document] > html > head > link:nth-of-type(16)'
retrieved_on: '2025-12-26T16:05:40.868543+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SMI-L-SKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SMI-L-SKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SMI-L-SKS
ghcid_numeric: 12686316141801066929
valid_from: '2025-12-06T23:37:23.337630+00:00'
@ -220,3 +221,22 @@ location:
postal_code: 503 53
street_address: Náměstí Prof. Babáka 106
normalization_timestamp: '2025-12-09T10:53:05.779401+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:05:46.875040+00:00'
source_url: https://vck.tritius.cz/library/smidary
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vck.tritius.cz/apple-touch-icon-180x180.png
source_url: https://vck.tritius.cz/library/smidary
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:05:46.875040+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SOB-L-MKFS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SOB-L-MKFS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SOB-L-MKFS
ghcid_numeric: 14775745294421521939
valid_from: '2025-12-08T11:21:39.620695+00:00'
@ -221,3 +222,22 @@ location:
postal_code: 507 43
street_address: nám. Míru 4
normalization_timestamp: '2025-12-09T10:53:05.804830+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:06:15.113877+00:00'
source_url: https://katalog.knihovnasobotka.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovnasobotka.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovnasobotka.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:06:15.113877+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SON-L-OKVS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SON-L-OKVS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SON-L-OKVS
ghcid_numeric: 1676848780163030101
valid_from: '2025-12-08T11:21:25.937854+00:00'
@ -215,3 +216,32 @@ location:
postal_code: 549 71
street_address: Šonov 318
normalization_timestamp: '2025-12-09T10:53:05.850460+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:06:17.246530+00:00'
source_url: https://sonov.mknachod.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://sonov.mknachod.cz/custom/design/logo.png
source_url: https://sonov.mknachod.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > a > div > img'
retrieved_on: '2025-12-26T16:06:17.246530+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://sonov.mknachod.cz/favicon.png?v=2.3.0-32050
source_url: https://sonov.mknachod.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:06:17.246530+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -217,3 +217,30 @@ location:
postal_code: 507 91
street_address: Revoluční 22
normalization_timestamp: '2025-12-09T10:53:05.907263+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:06:33.857329+00:00'
source_url: https://knihovnastarapaka.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnastarapaka.webk.cz/themes/new/orange/logo1.png
source_url: https://knihovnastarapaka.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-26T16:06:33.857329+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnastarapaka.webk.cz/themes/new/favicon.ico
source_url: https://knihovnastarapaka.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T16:06:33.857329+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-STA-L-OKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-STA-L-OKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-STA-L-OKS
ghcid_numeric: 12334434239917567617
valid_from: '2025-12-06T23:37:35.380390+00:00'
@ -210,3 +211,32 @@ location:
postal_code: 549 36
street_address: Stárkov 87
normalization_timestamp: '2025-12-09T10:53:05.943745+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:06:40.900929+00:00'
source_url: https://starkov.mknachod.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://starkov.mknachod.cz/custom/design/logo.png
source_url: https://starkov.mknachod.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > a > div > img'
retrieved_on: '2025-12-26T16:06:40.900929+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://starkov.mknachod.cz/favicon.png?v=2.3.0-32050
source_url: https://starkov.mknachod.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:06:40.900929+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -211,3 +211,22 @@ location:
postal_code: 503 57
street_address: Starý Bydžov 13
normalization_timestamp: '2025-12-09T10:53:05.989258+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:06:47.134259+00:00'
source_url: https://www.starybydzov.cz/obecni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.starybydzov.cz/image.php?nid=939&oid=8347757&width=29
source_url: https://www.starybydzov.cz/obecni-knihovna
css_selector: '[document] > html > head > link:nth-of-type(13)'
retrieved_on: '2025-12-26T16:06:47.134259+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-STE-L-OKS-obecni_knihovna_stezirky
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-STE-L-OKS-obecni_knihovna_stezirky
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-STE-L-OKS-obecni_knihovna_stezirky
ghcid_numeric: 9011157507171231934
valid_from: '2025-12-06T23:37:42.536335+00:00'
@ -212,3 +213,30 @@ location:
postal_code: 503 12
street_address: Stěžírky 85
normalization_timestamp: '2025-12-09T10:53:06.019672+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:06:52.456760+00:00'
source_url: https://knihovnastezirky.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnastezirky.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnastezirky.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-26T16:06:52.456760+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnastezirky.webk.cz/themes/new/favicon.ico
source_url: https://knihovnastezirky.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T16:06:52.456760+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-STE-L-OKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-STE-L-OKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-STE-L-OKS
ghcid_numeric: 3661751248275194899
valid_from: '2025-12-06T23:37:24.501688+00:00'
@ -220,3 +221,22 @@ location:
postal_code: 503 21
street_address: Lipová 380
normalization_timestamp: '2025-12-09T10:53:06.043691+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:01.451413+00:00'
source_url: https://vck.tritius.cz/library/stezery
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vck.tritius.cz/apple-touch-icon-180x180.png
source_url: https://vck.tritius.cz/library/stezery
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:07:01.451413+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -234,3 +234,22 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Muzeum hlavního města Prahy - Knihovna official
youtube_search_timestamp: '2025-12-09T09:33:57.843905+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:12.149061+00:00'
source_url: https://muzeumprahy.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://muzeumprahy.tritius.cz/apple-touch-icon-180x180.png
source_url: https://muzeumprahy.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:07:12.149061+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-STR-L-MLKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-STR-L-MLKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-STR-L-MLKS
ghcid_numeric: 414772981295881964
valid_from: '2025-12-06T23:37:35.203326+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 507 22
street_address: Střevač 49
normalization_timestamp: '2025-12-09T10:53:06.069942+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:21.784229+00:00'
source_url: https://katalog.knihovna.jicin.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:07:21.784229+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-STR-L-OKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-STR-L-OKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-STR-L-OKS
ghcid_numeric: 15334558282251380869
valid_from: '2025-12-06T23:37:35.081450+00:00'
@ -216,3 +217,22 @@ location:
postal_code: 503 14
street_address: Stračov 133
normalization_timestamp: '2025-12-09T10:53:06.097149+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:26.820386+00:00'
source_url: https://www.stracov.cz/obec/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.stracov.cz/images/favicon-114px.png
source_url: https://www.stracov.cz/obec/knihovna
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-26T16:07:26.820386+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 114x114
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -34,13 +34,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-STU-L-OKVS-obecni_knihovna_ve_starkoci
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-STU-L-OKVS-obecni_knihovna_ve_starkoci
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-STU-L-OKVS-obecni_knihovna_ve_starkoci
ghcid_numeric: 3643639751306834936
valid_from: '2025-12-06T23:37:35.385890+00:00'
@ -205,3 +206,22 @@ location:
postal_code: 549 48
street_address: Starkoč
normalization_timestamp: '2025-12-09T10:53:06.119962+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:35.429495+00:00'
source_url: https://www.starkoc.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.starkoc.cz/skins/starkoc.cz_lego2/favicons/apple-touch-icon.png
source_url: https://www.starkoc.cz
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-26T16:07:35.429495+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 4

View file

@ -217,3 +217,32 @@ location:
postal_code: 549 48
street_address: Studnice 1
normalization_timestamp: '2025-12-09T10:53:06.150295+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:43.701540+00:00'
source_url: https://studnice.mknachod.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://studnice.mknachod.cz/custom/design/logo_studnice.png
source_url: https://studnice.mknachod.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > a > div > img'
retrieved_on: '2025-12-26T16:07:43.701540+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://studnice.mknachod.cz/favicon.png?v=2.3.0-32050
source_url: https://studnice.mknachod.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:07:43.701540+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-SVO-L-MKSNU
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-SVO-L-MKSNU
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-SVO-L-MKSNU
ghcid_numeric: 1517136628594194905
valid_from: '2025-12-08T11:21:41.666214+00:00'
@ -228,3 +229,22 @@ location:
postal_code: 542 24
street_address: nám. Svornosti 474
normalization_timestamp: '2025-12-09T10:53:06.182992+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:07:59.146303+00:00'
source_url: https://svobodanup.tritius.cz/library/svoboda
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://svobodanup.tritius.cz/apple-touch-icon-180x180.png
source_url: https://svobodanup.tritius.cz/library/svoboda
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:07:59.146303+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TEP-L-MKVTNM
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TEP-L-MKVTNM
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TEP-L-MKVTNM
ghcid_numeric: 2071389135853017481
valid_from: '2025-12-06T23:37:21.404149+00:00'
@ -220,3 +221,22 @@ location:
postal_code: 549 57
street_address: Rooseveltova 106
normalization_timestamp: '2025-12-09T10:53:06.211590+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:06.281362+00:00'
source_url: https://vck.tritius.cz/library/teplicenmet
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vck.tritius.cz/apple-touch-icon-180x180.png
source_url: https://vck.tritius.cz/library/teplicenmet
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:08:06.281362+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -221,3 +221,22 @@ location:
postal_code: 503 46
street_address: Komenského 437
normalization_timestamp: '2025-12-09T10:53:06.238833+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:17.226365+00:00'
source_url: https://trebechovice.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trebechovice.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trebechovice.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:08:17.226365+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -215,3 +215,30 @@ location:
postal_code: 503 46
street_address: Jeníkovice 25
normalization_timestamp: '2025-12-09T10:53:06.267178+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:22.412104+00:00'
source_url: https://knihovnajenikovice.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnajenikovice.webk.cz/themes/new/lila/logo2.png
source_url: https://knihovnajenikovice.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-26T16:08:22.412104+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnajenikovice.webk.cz/themes/new/favicon.ico
source_url: https://knihovnajenikovice.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T16:08:22.412104+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRE-L-OKL-obecni_knihovna_libnikovice
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRE-L-OKL-obecni_knihovna_libnikovice
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRE-L-OKL-obecni_knihovna_libnikovice
ghcid_numeric: 13394915577216579750
valid_from: '2025-12-06T23:37:35.092591+00:00'
@ -210,3 +211,28 @@ location:
postal_code: 503 46
street_address: Libníkovice 40
normalization_timestamp: '2025-12-09T10:53:06.303917+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:29.023489+00:00'
source_url: https://www.libnikovice.cz/obec/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.libnikovice.cz/www//cache/images-favicon-180-180.png
source_url: https://www.libnikovice.cz/obec/knihovna
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-26T16:08:29.023489+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://www.libnikovice.cz/www//cache/images-logo-256-256.png
source_url: https://www.libnikovice.cz/obec/knihovna
css_selector: '[document] > html > head > meta:nth-of-type(16)'
retrieved_on: '2025-12-26T16:08:29.023489+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRE-L-OKL
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRE-L-OKL
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRE-L-OKL
ghcid_numeric: 8600715432952312296
valid_from: '2025-12-06T23:37:35.089827+00:00'
@ -211,3 +212,22 @@ location:
postal_code: 503 46
street_address: Librantice 119
normalization_timestamp: '2025-12-09T10:53:06.327697+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:36.703381+00:00'
source_url: https://kmhk.tritius.cz/library/librantice/detail/2425445
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://kmhk.tritius.cz/apple-touch-icon-180x180.png
source_url: https://kmhk.tritius.cz/library/librantice/detail/2425445
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:08:36.703381+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -45,13 +45,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRU-E-CLATSSVOSZ
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRU-E-CLATSSVOSZ
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRU-E-CLATSSVOSZ
ghcid_numeric: 6454742255730077578
valid_from: '2025-12-08T11:21:32.808813+00:00'
@ -228,3 +229,30 @@ location:
postal_code: 541 11
street_address: Lesnická 9
normalization_timestamp: '2025-12-09T10:53:06.380298+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:50.001576+00:00'
source_url: https://www.clatrutnov.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.clatrutnov.cz/images/lesarna/lesarna-logo.png
source_url: https://www.clatrutnov.cz
css_selector: '#logo > div.logo.logo-image > a > img.logo-image.primary-logo-image'
retrieved_on: '2025-12-26T16:08:50.001576+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Logo
- claim_type: favicon_url
claim_value: https://www.clatrutnov.cz/templates/j51_robyn/favicon.ico
source_url: https://www.clatrutnov.cz
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-26T16:08:50.001576+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -42,13 +42,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRU-E-VOSZSZSSIC
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRU-E-VOSZSZSSIC
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRU-E-VOSZSZSSIC
ghcid_numeric: 9428000902050574430
valid_from: '2025-12-08T11:21:30.541014+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 541 01
street_address: Procházkova 303
normalization_timestamp: '2025-12-09T10:53:06.410576+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:08:55.475437+00:00'
source_url: https://www.szstrutnov.cz/stranka/skolni-informacni-centrum
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.szstrutnov.cz/img/favicon.png
source_url: https://www.szstrutnov.cz/stranka/skolni-informacni-centrum
css_selector: '[document] > html.csstransforms.csstransforms3d > head > link'
retrieved_on: '2025-12-26T16:08:55.475437+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRU-L-MKSRFT
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRU-L-MKSRFT
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRU-L-MKSRFT
ghcid_numeric: 6888361403429324593
valid_from: '2025-12-06T23:37:20.375530+00:00'
@ -243,3 +244,22 @@ location:
postal_code: 541 01
street_address: Krakonošovo nám. 128
normalization_timestamp: '2025-12-09T10:53:06.518678+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:09:12.419002+00:00'
source_url: https://trutnov.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:09:12.419002+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -224,3 +224,28 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Muzeum Podkrkonoší official
youtube_search_timestamp: '2025-12-09T09:34:01.148484+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:09:22.483796+00:00'
source_url: http://www.muzeumtrutnov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.muzeumtrutnov.cz/favicon.ico
source_url: http://www.muzeumtrutnov.cz
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-26T16:09:22.483796+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.muzeumtrutnov.cz/images/logo.png
source_url: http://www.muzeumtrutnov.cz
css_selector: '[document] > html > head > meta:nth-of-type(4)'
retrieved_on: '2025-12-26T16:09:22.483796+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRU-M-MPVTK
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRU-M-MPVTK
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRU-M-MPVTK
ghcid_numeric: 15731288153147155550
valid_from: '2025-12-06T23:37:20.319593+00:00'
@ -210,3 +211,28 @@ location:
postal_code: 541 01
street_address: Školní 150
normalization_timestamp: '2025-12-09T10:53:06.586484+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:09:29.645801+00:00'
source_url: http://www.muzeumtrutnov.cz/online-katalog
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.muzeumtrutnov.cz/favicon.ico
source_url: http://www.muzeumtrutnov.cz/online-katalog
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-26T16:09:29.645801+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.muzeumtrutnov.cz/images/logo.png
source_url: http://www.muzeumtrutnov.cz/online-katalog
css_selector: '[document] > html > head > meta:nth-of-type(4)'
retrieved_on: '2025-12-26T16:09:29.645801+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -42,13 +42,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TRU-O-SOAVHKSOAT
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TRU-O-SOAVHKSOAT
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TRU-O-SOAVHKSOAT
ghcid_numeric: 8359230411226433992
valid_from: '2025-12-06T23:37:24.317177+00:00'
@ -218,3 +219,33 @@ location:
postal_code: 541 01
street_address: Komenského 128
normalization_timestamp: '2025-12-09T10:53:06.608840+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:09:38.926325+00:00'
source_url: https://vychodoceskearchivy.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://vychodoceskearchivy.cz/wp-content/uploads/2019/10/cropped-logo_SOA_acko_modra_nova_web-1.png
source_url: https://vychodoceskearchivy.cz
css_selector: '#cb-row--header-main > div.header--row-inner.header-main-inner
> div.customify-container > div.customify-grid.cb-row--desktop > div.row-v2.row-v2-main
> div.col-v2.col-v2-left > div.item--inner.builder-item--logo > div.site-branding.logo-left
> a.logo-link > img.site-img-logo'
retrieved_on: '2025-12-26T16:09:38.926325+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Státní oblastní archiv v Hradci Králové
- claim_type: favicon_url
claim_value: https://vychodoceskearchivy.cz/wp-content/uploads/2019/10/cropped-logo_SOA_acko_modra_nova_web-180x180.png
source_url: https://vychodoceskearchivy.cz
css_selector: '[document] > html > head > link:nth-of-type(31)'
retrieved_on: '2025-12-26T16:09:38.926325+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-TUR-L-MKT
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-TUR-L-MKT
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-TUR-L-MKT
ghcid_numeric: 10953938343125184539
valid_from: '2025-12-06T23:37:35.211678+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 506 01
street_address: Tuř 13
normalization_timestamp: '2025-12-09T10:53:06.637939+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:22:58.948872+00:00'
source_url: https://katalog.knihovna.jicin.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:22:58.948872+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -224,3 +224,32 @@ location:
postal_code: 517 21
street_address: Čs.armády 937
normalization_timestamp: '2025-12-09T10:53:06.677319+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:23:05.847849+00:00'
source_url: https://tyniste.kpsys.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://tyniste.kpsys.cz/custom/design/logo.png
source_url: https://tyniste.kpsys.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > div > img'
retrieved_on: '2025-12-26T16:23:05.847849+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://tyniste.kpsys.cz/favicon.png?v=2.3.0-32050
source_url: https://tyniste.kpsys.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:23:05.847849+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -232,3 +232,22 @@ youtube_status: NOT_FOUND
youtube_search_query: Výzkumný ústav živočišné výroby, v. v. i. - Dokumentace a knihovna
official
youtube_search_timestamp: '2025-12-09T09:34:02.468553+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:23:23.011539+00:00'
source_url: https://vuzv.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://vuzv.cz/wp-content/themes/vantage/images/logo_ofi.komplet_kopie_290px.jpg
source_url: https://vuzv.cz
css_selector: '#masthead > div.container-menu:nth-of-type(2) > a.logo > img'
retrieved_on: '2025-12-26T16:23:23.011539+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
summary:
total_claims: 1
has_primary_logo: true
has_favicon: false
has_og_image: false
favicon_count: 0

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ULI-L-LKU
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ULI-L-LKU
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ULI-L-LKU
ghcid_numeric: 7979941876089502284
valid_from: '2025-12-08T11:21:40.993750+00:00'
@ -221,3 +222,22 @@ location:
postal_code: 507 07
street_address: Úlibice 53
normalization_timestamp: '2025-12-09T10:53:06.715823+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:23:20.644482+00:00'
source_url: https://knihovnaulibice.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnaulibice.files.webk.cz/logov.png
source_url: https://knihovnaulibice.webk.cz
css_selector: '#header_in > a > h1 > img.mobile_display_none'
retrieved_on: '2025-12-26T16:23:20.644482+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
summary:
total_claims: 1
has_primary_logo: true
has_favicon: false
has_og_image: false
favicon_count: 0

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-UPI-L-MKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-UPI-L-MKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-UPI-L-MKS
ghcid_numeric: 10651109856694649050
valid_from: '2025-12-06T23:37:35.690696+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 542 32
street_address: Suchovršice 122
normalization_timestamp: '2025-12-09T10:53:06.765870+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:24:30.178762+00:00'
source_url: https://trutnov.tritius.cz/library/suchovrsice
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/suchovrsice
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:24:30.178762+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-UPI-L-MKVU
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-UPI-L-MKVU
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-UPI-L-MKVU
ghcid_numeric: 9493349148947058595
valid_from: '2025-12-08T11:21:31.162393+00:00'
@ -224,3 +225,22 @@ location:
postal_code: 542 32
street_address: Bratří Čapků 1075
normalization_timestamp: '2025-12-09T10:53:06.789559+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:24:32.149858+00:00'
source_url: https://katalog.knihovnaupice.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovnaupice.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovnaupice.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:24:32.149858+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VAM-L-MKV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VAM-L-MKV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VAM-L-MKV
ghcid_numeric: 6160392538062726452
valid_from: '2025-12-06T23:37:21.444978+00:00'
@ -223,3 +224,22 @@ location:
postal_code: 517 54
street_address: Voříškova 84
normalization_timestamp: '2025-12-09T10:53:06.882521+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:26:50.572382+00:00'
source_url: https://katalog.knihovna-vamberk.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna-vamberk.cz/themes/root/images/vufind-favicon.ico
source_url: https://katalog.knihovna-vamberk.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-26T16:26:50.572382+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -211,3 +211,30 @@ location:
postal_code: 507 21
street_address: Veliš 4
normalization_timestamp: '2025-12-09T10:53:07.018568+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:27:19.256999+00:00'
source_url: https://knihovnavelis.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnavelis.webk.cz/themes/new/orange/logo1.png
source_url: https://knihovnavelis.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-26T16:27:19.256999+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnavelis.webk.cz/themes/new/favicon.ico
source_url: https://knihovnavelis.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T16:27:19.256999+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -40,13 +40,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VEL-L-OKVJ
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VEL-L-OKVJ
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VEL-L-OKVJ
ghcid_numeric: 5834859117959544595
valid_from: '2025-12-06T23:37:25.449804+00:00'
@ -208,3 +209,22 @@ location:
country: *id006
postal_code: 552 24
normalization_timestamp: '2025-12-09T10:53:07.045336+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:27:27.925657+00:00'
source_url: https://jaromer.tritius.cz/library/velkajesenice
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://jaromer.tritius.cz/apple-touch-icon-180x180.png
source_url: https://jaromer.tritius.cz/library/velkajesenice
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:27:27.925657+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -211,3 +211,22 @@ location:
postal_code: 542 35
street_address: Velké Svatoňovice 286
normalization_timestamp: '2025-12-09T10:53:07.071223+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:27:36.092764+00:00'
source_url: https://trutnov.tritius.cz/library/vsvatonovice
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/vsvatonovice
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:27:36.092764+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -211,3 +211,22 @@ location:
postal_code: 544 54
street_address: Velký Vřešťov 34
normalization_timestamp: '2025-12-09T10:53:07.098523+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:27:43.506308+00:00'
source_url: https://trutnov.tritius.cz/library/velkyvrestov
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/velkyvrestov
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:27:43.506308+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VEL-L-OKVV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VEL-L-OKVV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VEL-L-OKVV
ghcid_numeric: 10639334761332797224
valid_from: '2025-12-06T23:37:35.396723+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 552 11
street_address: Na Zátiší 1
normalization_timestamp: '2025-12-09T10:53:07.122038+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:27:51.530250+00:00'
source_url: https://jaromer.tritius.cz/library/velichovky
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://jaromer.tritius.cz/apple-touch-icon-180x180.png
source_url: https://jaromer.tritius.cz/library/velichovky
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:27:51.530250+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VIL-L-OKV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VIL-L-OKV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VIL-L-OKV
ghcid_numeric: 1150297931881030826
valid_from: '2025-12-06T23:37:35.703171+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 544 01
street_address: Vilantice 101
normalization_timestamp: '2025-12-09T10:53:07.151159+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:27:58.327952+00:00'
source_url: https://trutnov.tritius.cz/library/vilantice
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/vilantice
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:27:58.327952+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -211,3 +211,22 @@ location:
postal_code: 544 62
street_address: Kocléřov 123
normalization_timestamp: '2025-12-09T10:53:07.176637+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:28:13.926477+00:00'
source_url: https://trutnov.tritius.cz/library/koclerov
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://trutnov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://trutnov.tritius.cz/library/koclerov
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:28:13.926477+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -212,3 +212,22 @@ location:
postal_code: 517 34
street_address: Voděrady 91
normalization_timestamp: '2025-12-09T10:53:07.203481+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:28:24.037405+00:00'
source_url: https://voderady-katalog.biblio.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://voderady-katalog.biblio.cz/themes/root/images/vufind-favicon.ico
source_url: https://voderady-katalog.biblio.cz
css_selector: '[document] > html > head > link:nth-of-type(6)'
retrieved_on: '2025-12-26T16:28:24.037405+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VOL-L-MKV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VOL-L-MKV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VOL-L-MKV
ghcid_numeric: 2286943577177845628
valid_from: '2025-12-06T23:37:35.228392+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 507 03
street_address: Volanice 130
normalization_timestamp: '2025-12-09T10:53:07.230508+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:28:32.509604+00:00'
source_url: https://katalog.knihovna.jicin.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:28:32.509604+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -215,3 +215,22 @@ location:
postal_code: 507 03
street_address: Vrbice 25
normalization_timestamp: '2025-12-09T10:53:07.256628+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:28:42.427609+00:00'
source_url: https://katalog.knihovna.jicin.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:28:42.427609+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VRC-M-SKNPKMK
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VRC-M-SKNPKMK
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VRC-M-SKNPKMK
ghcid_numeric: 14228715331342475269
valid_from: '2025-12-06T23:37:20.330082+00:00'
@ -217,3 +218,22 @@ location:
postal_code: 543 01
street_address: Husova 213
normalization_timestamp: '2025-12-09T10:53:07.298784+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:28:50.066865+00:00'
source_url: https://tritius.krnap.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://tritius.krnap.cz/apple-touch-icon-180x180.png
source_url: https://tritius.krnap.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:28:50.066865+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VRS-L-MLKV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VRS-L-MLKV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VRS-L-MLKV
ghcid_numeric: 1271407420322835844
valid_from: '2025-12-06T23:37:35.234014+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 507 33
street_address: Vršce 91
normalization_timestamp: '2025-12-09T10:53:07.335435+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:01.707295+00:00'
source_url: https://katalog.knihovna.jicin.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna.jicin.cz/favicon.png?v=2.3.0-32050
source_url: https://katalog.knihovna.jicin.cz
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:29:01.707295+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -221,3 +221,22 @@ location:
postal_code: 503 12
street_address: Všestary 57
normalization_timestamp: '2025-12-09T10:53:07.364423+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:08.775880+00:00'
source_url: https://kmhk.tritius.cz/library/vsestary
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://kmhk.tritius.cz/apple-touch-icon-180x180.png
source_url: https://kmhk.tritius.cz/library/vsestary
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:29:08.775880+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -34,13 +34,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VSE-L-OKR
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VSE-L-OKR
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VSE-L-OKR
ghcid_numeric: 13694520811341605484
valid_from: '2025-12-06T23:37:35.098405+00:00'
@ -202,3 +203,22 @@ location:
postal_code: 503 12
street_address: Rozběřice
normalization_timestamp: '2025-12-09T10:53:07.452466+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:22.235912+00:00'
source_url: https://www.vsestary-obec.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.vsestary-obec.cz/skins/vsestary-obec.cz_lego3/favicons/safari-pinned-tab.svg
source_url: https://www.vsestary-obec.cz
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-26T16:29:22.235912+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VYS-L-MKVV
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VYS-L-MKVV
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VYS-L-MKVV
ghcid_numeric: 7167273800857356016
valid_from: '2025-12-06T23:37:23.407695+00:00'
@ -216,3 +217,22 @@ location:
postal_code: 507 03
street_address: Mírové nám. 23
normalization_timestamp: '2025-12-09T10:53:07.479884+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:29.143828+00:00'
source_url: https://knihovnavv.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnavv.webk.cz/themes/cbdb-klasicky/default/logo3.png
source_url: https://knihovnavv.webk.cz
css_selector: '#header_in > a > h1 > img.mobile_display_none'
retrieved_on: '2025-12-26T16:29:29.143828+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
summary:
total_claims: 1
has_primary_logo: true
has_favicon: false
has_og_image: false
favicon_count: 0

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-VYS-L-MLKS
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-VYS-L-MLKS
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-VYS-L-MLKS
ghcid_numeric: 14299775540041090848
valid_from: '2025-12-06T23:37:35.194384+00:00'
@ -210,3 +211,30 @@ location:
postal_code: 507 03
street_address: Sběř 94
normalization_timestamp: '2025-12-09T10:53:07.506660+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:34.892692+00:00'
source_url: https://knihovnasber.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnasber.webk.cz/themes/new/orange/logo3.png
source_url: https://knihovnasber.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-26T16:29:34.892692+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnasber.webk.cz/themes/new/favicon.ico
source_url: https://knihovnasber.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-26T16:29:34.892692+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -190,3 +190,22 @@ wikidata_enrichment:
enrichment_version: 2.1.0
instance_of:
- Q2326815
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:44.093326+00:00'
source_url: https://katalog.knihovna-zbraslav.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.knihovna-zbraslav.cz/themes/root/images/vufind-favicon.ico
source_url: https://katalog.knihovna-zbraslav.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-26T16:29:44.093326+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ZAC-L-MKVZ
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ZAC-L-MKVZ
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ZAC-L-MKVZ
ghcid_numeric: 10112564257607228020
valid_from: '2025-12-08T11:21:29.076500+00:00'
@ -220,3 +221,22 @@ location:
postal_code: 542 01
street_address: Na pilíři 204
normalization_timestamp: '2025-12-09T10:53:07.535028+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:29:51.449798+00:00'
source_url: https://vck.tritius.cz/library/zacler
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vck.tritius.cz/apple-touch-icon-180x180.png
source_url: https://vck.tritius.cz/library/zacler
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:29:51.449798+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -40,13 +40,14 @@ ghcid:
iso_code_source: CZ-521
ghcid_history:
- ghcid: CZ-52-ZAM-A-SOAVHK
valid_from: "2025-12-10T09:46:51Z"
valid_from: '2025-12-10T09:46:51Z'
valid_to: null
reason: "Corrected region code from CZ-521 to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-521 to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-521-ZAM-A-SOAVHK
valid_from: null
valid_to: "2025-12-10T09:46:51Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:46:51Z'
reason: Previous GHCID with incorrect region code
- ghcid: XX-XX-XXX-A-SOAVHK
ghcid_numeric: 6234925827149830915
valid_from: '2025-12-06T23:37:43.767931+00:00'
@ -87,7 +88,8 @@ provenance:
confidence_score: 0.85
notes:
- 'Country resolved 2025-12-06T23:54:39Z: XX→CZ via Wikidata P17'
- 'City resolved 2025-12-07T00:34:52Z: XXX->ZAM via Wikidata Q17156873 coords (49.9862,16.1288) -> Zamrsk (GeoNames:3061872)'
- 'City resolved 2025-12-07T00:34:52Z: XXX->ZAM via Wikidata Q17156873 coords (49.9862,16.1288)
-> Zamrsk (GeoNames:3061872)'
- 'Region resolved 2025-12-07T11:30:37Z: XX->521 via Wikidata P131 (CZ-521)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:48:19Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T06:49:44Z
@ -119,8 +121,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.85
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: Státní oblastní archiv v Hradci Králové
@ -283,3 +285,33 @@ location:
youtube_status: NOT_FOUND
youtube_search_query: Státní oblastní archiv v Hradci Králové official
youtube_search_timestamp: '2025-12-09T09:34:09.142287+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:30:12.655589+00:00'
source_url: https://vychodoceskearchivy.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://vychodoceskearchivy.cz/wp-content/uploads/2019/10/cropped-logo_SOA_acko_modra_nova_web-1.png
source_url: https://vychodoceskearchivy.cz
css_selector: '#cb-row--header-main > div.header--row-inner.header-main-inner
> div.customify-container > div.customify-grid.cb-row--desktop > div.row-v2.row-v2-main
> div.col-v2.col-v2-left > div.item--inner.builder-item--logo > div.site-branding.logo-left
> a.logo-link > img.site-img-logo'
retrieved_on: '2025-12-26T16:30:12.655589+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Státní oblastní archiv v Hradci Králové
- claim_type: favicon_url
claim_value: https://vychodoceskearchivy.cz/wp-content/uploads/2019/10/cropped-logo_SOA_acko_modra_nova_web-180x180.png
source_url: https://vychodoceskearchivy.cz
css_selector: '[document] > html > head > link:nth-of-type(31)'
retrieved_on: '2025-12-26T16:30:12.655589+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ZDA-L-MKZNO
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ZDA-L-MKZNO
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ZDA-L-MKZNO
ghcid_numeric: 7831516836994331621
valid_from: '2025-12-08T11:21:31.307331+00:00'
@ -215,3 +216,22 @@ location:
postal_code: 517 23
street_address: Žďár nad Orlicí 133
normalization_timestamp: '2025-12-09T10:53:07.560908+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:30:11.155985+00:00'
source_url: https://zdar-katalog.biblio.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://zdar-katalog.biblio.cz/themes/root/images/vufind-favicon.ico
source_url: https://zdar-katalog.biblio.cz
css_selector: '[document] > html > head > link:nth-of-type(6)'
retrieved_on: '2025-12-26T16:30:11.155985+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ZDA-L-OKVZ
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ZDA-L-OKVZ
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ZDA-L-OKVZ
ghcid_numeric: 16600439932437167733
valid_from: '2025-12-08T11:21:37.694827+00:00'
@ -221,3 +222,32 @@ location:
postal_code: 549 37
street_address: Žďárky 35
normalization_timestamp: '2025-12-09T10:53:07.589821+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:30:32.028886+00:00'
source_url: https://zdarky.mknachod.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://zdarky.mknachod.cz/custom/design/logo.png
source_url: https://zdarky.mknachod.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > a > div > img'
retrieved_on: '2025-12-26T16:30:32.028886+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://zdarky.mknachod.cz/favicon.png?v=2.3.0-32050
source_url: https://zdarky.mknachod.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-26T16:30:32.028886+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-52-ZDA-L-OKVZNM
valid_from: "2025-12-10T09:47:04Z"
valid_from: '2025-12-10T09:47:04Z'
valid_to: null
reason: "Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-KR to CZ-52 (Hradec Králové (Královéhradecký))
per ISO 3166-2:CZ
- ghcid: CZ-KR-ZDA-L-OKVZNM
valid_from: null
valid_to: "2025-12-10T09:47:04Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:04Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-KR-ZDA-L-OKVZNM
ghcid_numeric: 14046730031053293892
valid_from: '2025-12-08T11:21:40.425702+00:00'
@ -215,3 +216,22 @@ location:
postal_code: 549 55
street_address: Žďár nad Metují 60
normalization_timestamp: '2025-12-09T10:53:07.617432+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:30:41.355107+00:00'
source_url: https://knihovnazdarnadmetuji.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnazdarnadmetuji.files.webk.cz/logov.png
source_url: https://knihovnazdarnadmetuji.webk.cz
css_selector: '#header_in > a > h1 > img.mobile_display_none'
retrieved_on: '2025-12-26T16:30:41.355107+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
summary:
total_claims: 1
has_primary_logo: true
has_favicon: false
has_og_image: false
favicon_count: 0

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-53-BAN-L-KB
valid_from: "2025-12-10T09:47:07Z"
valid_from: '2025-12-10T09:47:07Z'
valid_to: null
reason: "Corrected region code from CZ-PA to CZ-53 (Pardubice (Pardubický)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-PA to CZ-53 (Pardubice (Pardubický)) per
ISO 3166-2:CZ
- ghcid: CZ-PA-BAN-L-KB
valid_from: null
valid_to: "2025-12-10T09:47:07Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:07Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-PA-BAN-L-KB
ghcid_numeric: 13558457992846917346
valid_from: '2025-12-06T23:37:40.519342+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 568 02
street_address: Banín 41
normalization_timestamp: '2025-12-09T10:53:32.271837+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:30:55.397701+00:00'
source_url: https://tritius.booksy.cz/library/banin
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://tritius.booksy.cz/apple-touch-icon-180x180.png
source_url: https://tritius.booksy.cz/library/banin
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:30:55.397701+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-53-BEL-L-OKVBNS
valid_from: "2025-12-10T09:47:07Z"
valid_from: '2025-12-10T09:47:07Z'
valid_to: null
reason: "Corrected region code from CZ-PA to CZ-53 (Pardubice (Pardubický)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-PA to CZ-53 (Pardubice (Pardubický)) per
ISO 3166-2:CZ
- ghcid: CZ-PA-BEL-L-OKVBNS
valid_from: null
valid_to: "2025-12-10T09:47:07Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:07Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-PA-BEL-L-OKVBNS
ghcid_numeric: 5004375315735181230
valid_from: '2025-12-06T23:37:40.522190+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 569 05
street_address: Bělá nad Svitavou 89
normalization_timestamp: '2025-12-09T10:53:32.295226+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:31:02.015567+00:00'
source_url: https://tritius.booksy.cz/library/belansvitavou
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://tritius.booksy.cz/apple-touch-icon-180x180.png
source_url: https://tritius.booksy.cz/library/belansvitavou
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-26T16:31:02.015567+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: CZ-53-BEZ-L-OKBUT
valid_from: "2025-12-10T09:47:07Z"
valid_from: '2025-12-10T09:47:07Z'
valid_to: null
reason: "Corrected region code from CZ-PA to CZ-53 (Pardubice (Pardubický)) per ISO 3166-2:CZ"
reason: Corrected region code from CZ-PA to CZ-53 (Pardubice (Pardubický)) per
ISO 3166-2:CZ
- ghcid: CZ-PA-BEZ-L-OKBUT
valid_from: null
valid_to: "2025-12-10T09:47:07Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:47:07Z'
reason: Previous GHCID with incorrect region code
- ghcid: CZ-PA-BEZ-L-OKBUT
ghcid_numeric: 2288782143293573997
valid_from: '2025-12-06T23:37:40.526095+00:00'
@ -205,3 +206,22 @@ location:
postal_code: 569 43
street_address: Bezděčí u Trnávky 19
normalization_timestamp: '2025-12-09T10:53:32.322297+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-26T16:31:14.740562+00:00'
source_url: https://bezdeci-katalog.mkmt.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://bezdeci-katalog.mkmt.cz/themes/root/images/vufind-favicon.ico
source_url: https://bezdeci-katalog.mkmt.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-26T16:31:14.740562+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

Some files were not shown because too many files have changed in this diff Show more