-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1004 lines (905 loc) · 45.2 KB
/
Copy pathindex.html
File metadata and controls
1004 lines (905 loc) · 45.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="CGGJidmg9parYMdFHNi4jklzZ7ul8ciafDiIBtup_nY" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://cloud.umami.is; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'; connect-src 'self' https://cloud.umami.is https://api-gateway.umami.dev; object-src 'none'; base-uri 'self'; form-action 'self'">
<title>MiCAR Tracker — ESMA MiCA Register for CASPs, EMTs & Non-Compliant Entities</title>
<meta name="description" content="Search the ESMA interim MiCA register in one place: MiCA-authorised CASPs, e-money token (EMT) issuers and non-compliant entities by country, authority and service. Updated weekly by the Digital Euro Association. Free CSV/JSON download.">
<link rel="canonical" href="https://micatracker.digital-euro-association.de/">
<!-- Open Graph metadata -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://micatracker.digital-euro-association.de/">
<meta property="og:title" content="MiCAR Tracker — ESMA MiCA Register for CASPs, EMTs & Non-Compliant Entities">
<meta property="og:description" content="Search the ESMA interim MiCA register: MiCA-authorised CASPs, EMT issuers and non-compliant entities by country, authority and service. Updated weekly.">
<meta property="og:image" content="https://micatracker.digital-euro-association.de/cover.png">
<!-- Twitter Card metadata -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://micatracker.digital-euro-association.de/">
<meta name="twitter:title" content="MiCAR Tracker — ESMA MiCA Register for CASPs, EMTs & Non-Compliant Entities">
<meta name="twitter:description" content="Search the ESMA interim MiCA register: MiCA-authorised CASPs, EMT issuers and non-compliant entities by country, authority and service. Updated weekly.">
<meta name="twitter:image" content="https://micatracker.digital-euro-association.de/cover.png">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="alternate" type="application/rss+xml" title="MiCAR Tracker register updates" href="feed.xml">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "DEA MiCAR Tracker - EMT, CASP and non-compliant registers",
"description": "Weekly-updated registers of Electronic Money Token issuers, Crypto-Asset Service Providers, and entities flagged as non-compliant under the EU Markets in Crypto-Assets Regulation (MiCAR), derived from the ESMA interim MiCA register.",
"url": "https://micatracker.digital-euro-association.de/",
"keywords": ["MiCA", "MiCAR", "EMT", "CASP", "stablecoin", "ESMA", "crypto-asset regulation"],
"creator": {
"@type": "Organization",
"name": "Digital Euro Association",
"url": "https://digital-euro-association.de"
},
"isBasedOn": "https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica#InterimMiCARegister",
"license": "https://www.esma.europa.eu/legal-notice",
"distribution": [
{
"@type": "DataDownload",
"name": "EMT issuers",
"encodingFormat": "application/json",
"contentUrl": "https://micatracker.digital-euro-association.de/data/emts.json"
},
{
"@type": "DataDownload",
"name": "Crypto-Asset Service Providers",
"encodingFormat": "application/json",
"contentUrl": "https://micatracker.digital-euro-association.de/data/casps.json"
},
{
"@type": "DataDownload",
"name": "Non-compliant entities",
"encodingFormat": "application/json",
"contentUrl": "https://micatracker.digital-euro-association.de/data/non-compliant.json"
}
]
}
</script>
<link rel="stylesheet" href="styles/tailwind.css">
<link rel="stylesheet" href="styles/site.css">
<link rel="stylesheet" href="assets/vendor/inter/inter.css">
<link rel="stylesheet" href="assets/vendor/fontawesome/css/all.min.css">
<script defer src="https://cloud.umami.is/script.js" data-website-id="dbd82f5d-689a-452f-9fff-fba85b9de507"></script>
<style>
/* Shared header / nav / body chrome, KPI summary cards, card-hover /
fade-in animations, and register table styles all live in
styles/site.css - shared with the casp-tracker / emt-tracker /
non-compliant-casps intent pages. */
.progress-bar {
transition: width 0.8s ease-in-out;
}
.content-bg {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
}
</style>
</head>
<body class="main-bg">
<a href="#main" class="sr-only focus:not-sr-only focus:fixed focus:top-2 focus:left-2 focus:z-[100] focus:bg-white focus:text-blue-900 focus:font-semibold focus:px-4 focus:py-2 focus:rounded-lg focus:shadow-lg">Skip to main content</a>
<!-- Sticky Header -->
<header class="header-sticky shadow-2xl">
<div class="max-w-7xl mx-auto px-6 py-6">
<div class="flex items-center justify-between flex-wrap header-content">
<div class="flex items-center space-x-6 mb-4 md:mb-0">
<a href="index.html" class="inline-flex items-center" aria-label="Return to the dashboard">
<img src="DEA%20logo%20white.png" alt="DEA Logo" class="logo-container">
</a>
<div class="flex items-center">
<h1 class="text-[1.8rem] md:text-[2.2rem] font-bold text-white mb-0 leading-tight">
<span class="text-sky-100">MiCAR</span>
<span class="text-sky-50">Tracker</span>
</h1>
</div>
</div>
<div class="flex items-center gap-3 header-actions">
<nav class="hidden md:flex items-center nav-buttons" aria-label="Main navigation">
<a href="index.html" aria-current="page" class="tab-button tab-active px-5 py-3 rounded-xl font-semibold inline-flex items-center justify-center">
<i class="fas fa-chart-pie mr-2" aria-hidden="true"></i>Overview
</a>
<a href="emt-tracker.html" class="tab-button tab-inactive px-5 py-3 rounded-xl font-semibold inline-flex items-center justify-center">
<i class="fas fa-table mr-2" aria-hidden="true"></i>EMTs
</a>
<a href="casp-tracker.html" class="tab-button tab-inactive px-5 py-3 rounded-xl font-semibold inline-flex items-center justify-center">
<i class="fas fa-building-columns mr-2" aria-hidden="true"></i>CASPs
</a>
<a href="non-compliant-casps.html" class="tab-button tab-inactive px-5 py-3 rounded-xl font-semibold inline-flex items-center justify-center">
<i class="fas fa-exclamation-triangle mr-2" aria-hidden="true"></i>Non-Compliant
</a>
<a href="about.html" class="tab-button tab-inactive px-5 py-3 rounded-xl font-semibold inline-flex items-center justify-center">
<i class="fas fa-circle-info mr-2" aria-hidden="true"></i>About
</a>
</nav>
<div class="md:hidden flex items-center hamburger-only">
<button id="mobile-menu-button"
type="button"
class="hamburger-button text-white hover:text-sky-100 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-white"
aria-controls="mobile-menu"
aria-expanded="false"
aria-label="Open main menu">
<svg id="hamburger-icon" class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
<svg id="close-icon" class="h-6 w-6 hidden" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
</div>
</div>
</div>
</header>
<div id="mobile-menu-overlay" class="mobile-menu-overlay fixed inset-0 hidden" aria-hidden="true"></div>
<div id="mobile-menu" class="mobile-menu-container hidden">
<div class="mobile-menu-panel p-4">
<nav class="flex flex-col mobile-menu-list" aria-label="Mobile navigation">
<a href="index.html" aria-current="page" class="mobile-menu-link mobile-menu-item text-base font-medium">
<span class="mobile-menu-icon" aria-hidden="true"><i class="fas fa-chart-pie"></i></span>
<span class="mobile-menu-text">Overview</span>
</a>
<a href="emt-tracker.html" class="mobile-menu-link mobile-menu-item text-base font-medium">
<span class="mobile-menu-icon" aria-hidden="true"><i class="fas fa-table"></i></span>
<span class="mobile-menu-text">EMTs</span>
</a>
<a href="casp-tracker.html" class="mobile-menu-link mobile-menu-item text-base font-medium">
<span class="mobile-menu-icon" aria-hidden="true"><i class="fas fa-building-columns"></i></span>
<span class="mobile-menu-text">CASPs</span>
</a>
<a href="non-compliant-casps.html" class="mobile-menu-link mobile-menu-item text-base font-medium">
<span class="mobile-menu-icon" aria-hidden="true"><i class="fas fa-exclamation-triangle"></i></span>
<span class="mobile-menu-text">Non-Compliant</span>
</a>
<a href="about.html" class="mobile-menu-link mobile-menu-item text-base font-medium">
<span class="mobile-menu-icon" aria-hidden="true"><i class="fas fa-circle-info"></i></span>
<span class="mobile-menu-text">About</span>
</a>
</nav>
</div>
</div>
<main id="main" class="max-w-7xl mx-auto px-6 py-8">
<!-- Static, crawlable intro: keyword-rich text + links to the intent pages -->
<section class="mb-6 text-white">
<h2 class="text-2xl md:text-3xl font-bold mb-2">Search the ESMA MiCA register</h2>
<p class="text-blue-100 text-sm md:text-base">
The DEA MiCAR Tracker presents the EU's <strong>Markets in Crypto-Assets (MiCA / MiCAR)</strong> registers in one searchable place, based on public data from the ESMA interim MiCA register. Browse MiCA-authorised
<a href="casp-tracker.html" class="underline hover:text-white">Crypto-Asset Service Providers (CASPs)</a>,
<a href="emt-tracker.html" class="underline hover:text-white">e-money token (EMT) issuers</a>, and
<a href="non-compliant-casps.html" class="underline hover:text-white">entities flagged as non-compliant</a>
by country, competent authority, services and token. Updated weekly; download any register as CSV or JSON.
</p>
<p id="dataFreshness" class="text-sm text-blue-100 mt-3"></p>
</section>
<div class="mb-4 text-white">
<h2 class="text-2xl font-semibold">EMT Issuer Insights</h2>
<p class="text-blue-100">Key indicators and distributions for licensed Electronic Money Token issuers.</p>
</div>
<div id="dataLoadingNotice" class="mb-6 rounded-2xl bg-white bg-opacity-90 p-4 text-gray-700 text-sm">
Loading register data…
</div>
<div id="dataErrorNotice" class="hidden mb-6 rounded-2xl bg-red-50 border border-red-200 p-4 text-red-800 text-sm" role="alert">
Could not load the register data. Please refresh the page; if the problem persists the data files may be temporarily unavailable.
</div>
<!-- KPI Cards Container - Dynamic -->
<div id="kpiContainer" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-6 gap-6 mb-8 fade-in">
<!-- Will be populated dynamically by JavaScript -->
</div>
<div class="fade-in">
<!-- Charts Row -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-8">
<div class="bg-white bg-opacity-95 backdrop-filter backdrop-blur-lg rounded-2xl shadow-lg p-6 card-hover">
<h3 class="text-xl font-bold text-gray-800 mb-4">
<i class="fas fa-globe-europe text-teal-600 mr-2" aria-hidden="true"></i>EMT Geographic Distribution
</h3>
<div class="space-y-4" id="countryChart">
<!-- Will be populated by JavaScript -->
</div>
</div>
<div class="bg-white bg-opacity-95 backdrop-filter backdrop-blur-lg rounded-2xl shadow-lg p-6 card-hover">
<h3 class="text-xl font-bold text-gray-800 mb-4">
<i class="fas fa-university text-blue-600 mr-2" aria-hidden="true"></i>EMT Regulatory Authorities
</h3>
<div class="space-y-4" id="authorityChart">
<!-- Will be populated by JavaScript -->
</div>
</div>
</div>
<div class="h-px bg-white/30 my-10"></div>
<div class="mb-4 text-white">
<h2 class="text-2xl font-semibold">CASPs Insights</h2>
<p class="text-blue-100">Overview of registered Crypto-Asset Service Providers by country and authority.</p>
</div>
<div id="caspsKpiContainer" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8 fade-in">
<!-- CASPs KPI cards populated dynamically -->
</div>
<!-- CASPs Charts Row -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-8">
<div class="bg-white bg-opacity-95 backdrop-filter backdrop-blur-lg rounded-2xl shadow-lg p-6 card-hover">
<h3 class="text-xl font-bold text-gray-800 mb-4">
<i class="fas fa-globe text-teal-600 mr-2" aria-hidden="true"></i>CASP Geographic Distribution
</h3>
<div class="space-y-4" id="caspsCountryChart">
<!-- Will be populated by JavaScript -->
</div>
</div>
<div class="bg-white bg-opacity-95 backdrop-filter backdrop-blur-lg rounded-2xl shadow-lg p-6 card-hover">
<h3 class="text-xl font-bold text-gray-800 mb-4">
<i class="fas fa-landmark text-blue-600 mr-2" aria-hidden="true"></i>CASP Competent Authorities
</h3>
<div class="space-y-4" id="caspsAuthorityChart">
<!-- Will be populated by JavaScript -->
</div>
</div>
</div>
<!-- Recent register changes -->
<div class="bg-white bg-opacity-95 backdrop-filter backdrop-blur-lg rounded-2xl shadow-lg p-6 card-hover">
<div class="flex items-center justify-between mb-4">
<h3 class="text-xl font-bold text-gray-800">
<i class="fas fa-clock-rotate-left text-blue-600 mr-2" aria-hidden="true"></i>Recent Register Changes
</h3>
<a href="feed.xml" class="text-sm text-blue-600 underline hover:text-blue-800">RSS feed</a>
</div>
<div id="changelogContainer" class="space-y-4 text-sm text-gray-700">
<p class="text-gray-500">Loading change history…</p>
</div>
</div>
</div>
</main>
<!-- ==== DEA FOOTER START ==== -->
<footer class="bg-gray-900 text-gray-200 mt-12">
<div class="max-w-7xl mx-auto px-4 py-10 space-y-10">
<!-- ── Headline & snapshot date ── -->
<div class="text-center">
<p class="text-gray-300">
Digital Euro Association (DEA) MiCAR Tracker – Overview
</p>
<p class="text-gray-400 text-sm mt-2" id="currentDate">
Source: <a href="https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica#InterimMiCARegister" target="_blank" rel="noopener" class="text-blue-300 underline hover:text-blue-200">ESMA EMT Register</a> - Data as of 16 July 2026</p>
<p class="text-gray-400 text-sm" id="caspsDate">Source: <a href="https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica#InterimMiCARegister" target="_blank" rel="noopener" class="text-blue-300 underline hover:text-blue-200">ESMA CASPs Register</a> - Data as of 16 July 2026</p>
</div>
<!-- ── Nav links + social icons ── -->
<div class="flex flex-col md:flex-row md:justify-between gap-8">
<!-- Registers -->
<nav aria-label="Registers">
<p class="text-gray-400 text-xs uppercase tracking-wide mb-2">Registers</p>
<ul class="space-y-2 text-sm">
<li><a href="casp-tracker.html" class="hover:text-white font-semibold">CASP Tracker</a></li>
<li><a href="emt-tracker.html" class="hover:text-white font-semibold">EMT Tracker</a></li>
<li><a href="non-compliant-casps.html" class="hover:text-white font-semibold">Non-Compliant CASPs</a></li>
<li><a href="about.html" class="hover:text-white font-semibold">About & methodology</a></li>
</ul>
</nav>
<!-- Nav -->
<nav aria-label="Legal">
<p class="text-gray-400 text-xs uppercase tracking-wide mb-2">Digital Euro Association</p>
<ul class="space-y-2 text-sm">
<li><a href="https://home.digital-euro-association.de/legal-notice?hsLang=en" target="_blank" rel="noopener" class="hover:text-white font-semibold">Legal Notice</a></li>
<li><a href="https://home.digital-euro-association.de/privacy-policy-0?hsLang=en" target="_blank" rel="noopener" class="hover:text-white font-semibold">Privacy</a></li>
<li><a href="https://home.digital-euro-association.de/code-of-conduct?hsLang=en" target="_blank" rel="noopener" class="hover:text-white font-semibold">Code of Conduct</a></li>
<li><a href="https://home.digital-euro-association.de/faq?hsLang=en" target="_blank" rel="noopener" class="hover:text-white font-semibold">FAQ</a></li>
<li><a href="https://home.digital-euro-association.de/impressum?hsLang=en" target="_blank" rel="noopener" class="hover:text-white font-semibold">Impressum</a></li>
</ul>
</nav>
<!-- Social -->
<div class="flex items-center gap-6 text-xl">
<a href="https://x.com/DigiEuro" target="_blank" rel="noopener" aria-label="Twitter" class="hover:text-white"><i class="fab fa-twitter" aria-hidden="true"></i></a>
<a href="mailto:info@digital-euro-association.de" aria-label="Email" class="hover:text-white"><i class="fas fa-envelope" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/company/digital-euro-association/" target="_blank" rel="noopener" aria-label="LinkedIn" class="hover:text-white"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
<a href="https://github.com/DigiEuro/micardashboard" target="_blank" rel="noopener" aria-label="GitHub" class="hover:text-white"><i class="fab fa-github" aria-hidden="true"></i></a>
</div>
</div>
<!-- ── Bottom row: copyright + CTA ── -->
<div class="border-t border-gray-700 pt-6 flex flex-col md:flex-row md:justify-between md:items-center gap-4">
<p class="text-xs">© <span id="year"></span> Digital Euro Association e.V.</p>
<a href="https://digital-euro-association.de"
class="inline-block bg-blue-600 hover:bg-blue-700 text-white text-sm font-semibold px-5 py-2 rounded-lg shadow transition">
Learn more about DEA
</a>
</div>
</div>
</footer>
<div id="cookieConsent" class="cookie-banner cookie-hidden" role="dialog" aria-live="polite" aria-modal="false" aria-labelledby="cookieTitle" aria-describedby="cookieDescription" aria-hidden="true">
<button type="button" id="cookieDismiss" class="cookie-close" aria-label="Dismiss cookie notice">
<span aria-hidden="true">×</span>
</button>
<div class="cookie-header">
<div class="cookie-icon" aria-hidden="true">
<i class="fas fa-cookie-bite"></i>
</div>
<h2 id="cookieTitle">Cookie notice</h2>
</div>
<p id="cookieDescription">We use essential cookies to keep this dashboard running smoothly. Our privacy-friendly analytics (Umami) operates without cookies.</p>
<div class="cookie-actions">
<button type="button" id="cookieAccept" class="cookie-accept">Got it</button>
<button type="button" id="cookieRemind" class="cookie-dismiss">Remind me later</button>
</div>
</div>
<!-- ==== DEA FOOTER END ==== -->
<script>
// Comprehensive European country flags mapping
const countryFlags = {
// Current EU Member States
'Austria': '🇦🇹',
'Belgium': '🇧🇪',
'Bulgaria': '🇧🇬',
'Croatia': '🇭🇷',
'Cyprus': '🇨🇾',
'Czech Republic': '🇨🇿',
'Czechia': '🇨🇿',
'Denmark': '🇩🇰',
'Estonia': '🇪🇪',
'Finland': '🇫🇮',
'France': '🇫🇷',
'Germany': '🇩🇪',
'Greece': '🇬🇷',
'Hungary': '🇭🇺',
'Ireland': '🇮🇪',
'Italy': '🇮🇹',
'Latvia': '🇱🇻',
'Lithuania': '🇱🇹',
'Luxembourg': '🇱🇺',
'Malta': '🇲🇹',
'Netherlands': '🇳🇱',
'Poland': '🇵🇱',
'Portugal': '🇵🇹',
'Romania': '🇷🇴',
'Slovakia': '🇸🇰',
'Slovenia': '🇸🇮',
'Spain': '🇪🇸',
'Sweden': '🇸🇪',
// EEA Countries (non-EU)
'Iceland': '🇮🇸',
'Liechtenstein': '🇱🇮',
'Norway': '🇳🇴',
// Other European Countries
'Albania': '🇦🇱',
'Andorra': '🇦🇩',
'Armenia': '🇦🇲',
'Azerbaijan': '🇦🇿',
'Belarus': '🇧🇾',
'Bosnia and Herzegovina': '🇧🇦',
'Georgia': '🇬🇪',
'Kazakhstan': '🇰🇿',
'Kosovo': '🇽🇰',
'Moldova': '🇲🇩',
'Monaco': '🇲🇨',
'Montenegro': '🇲🇪',
'North Macedonia': '🇲🇰',
'Russia': '🇷🇺',
'San Marino': '🇸🇲',
'Serbia': '🇷🇸',
'Switzerland': '🇨🇭',
'Turkey': '🇹🇷',
'Ukraine': '🇺🇦',
'United Kingdom': '🇬🇧',
'Vatican City': '🇻🇦',
// Common alternative names
'UK': '🇬🇧',
'Britain': '🇬🇧',
'Great Britain': '🇬🇧',
'England': '🏴',
'Scotland': '🏴',
'Wales': '🏴',
'Northern Ireland': '🇬🇧'
};
// Currency symbols and information
const currencyInfo = {
'EUR': { symbol: '💶', name: 'Euro', color: 'orange' },
'USD': { symbol: '💵', name: 'US Dollar', color: 'coral' },
'GBP': { symbol: '💷', name: 'British Pound', color: 'purple' },
'CZK': { symbol: '🇨🇿', name: 'Czech Koruna', color: 'blue' },
'HKD': { symbol: '🇭🇰', name: 'Hong Kong Dollar', color: 'green' },
'CHF': { symbol: '🇨🇭', name: 'Swiss Franc', color: 'red' },
'SEK': { symbol: '🇸🇪', name: 'Swedish Krona', color: 'yellow' },
'NOK': { symbol: '🇳🇴', name: 'Norwegian Krone', color: 'teal' },
'DKK': { symbol: '🇩🇰', name: 'Danish Krone', color: 'blue' },
'PLN': { symbol: '🇵🇱', name: 'Polish Zloty', color: 'red' },
'HUF': { symbol: '🇭🇺', name: 'Hungarian Forint', color: 'green' },
'RON': { symbol: '🇷🇴', name: 'Romanian Leu', color: 'yellow' }
};
const currencyBadgeStyles = {
orange: 'background-color: #ffedd5; color: #c2410c;',
coral: 'background-color: #ffe4e6; color: #be123c;',
purple: 'background-color: #f3e8ff; color: #7e22ce;',
blue: 'background-color: #dbeafe; color: #1d4ed8;',
green: 'background-color: #dcfce7; color: #15803d;',
red: 'background-color: #fee2e2; color: #b91c1c;',
yellow: 'background-color: #fef9c3; color: #a16207;',
teal: 'background-color: #ccfbf1; color: #0f766e;'
};
function getCurrencyBadgeStyle(currencyCode) {
const color = currencyInfo[currencyCode]?.color || 'green';
return currencyBadgeStyles[color] || currencyBadgeStyles.green;
}
// All register values originate in an external sheet, so treat them as
// untrusted before interpolating into innerHTML templates.
function esc(value) {
return String(value ?? '').replace(/[&<>"']/g, ch => ({
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": '''
}[ch]));
}
function safeHttpUrl(value) {
const url = String(value || '').trim();
return /^https?:\/\//i.test(url) ? url : '';
}
// KPI card color classes
const kpiColors = ['kpi-teal', 'kpi-blue', 'kpi-orange', 'kpi-coral', 'kpi-purple', 'kpi-red', 'kpi-green', 'kpi-yellow'];
// Register data is loaded at runtime from the JSON files under data/,
// which the scheduled updater keeps current.
let data = [];
let caspsData = [];
let nonCompliantData = [];
async function fetchJson(url) {
const response = await fetch(url, { cache: 'no-cache' });
if (!response.ok) {
throw new Error(`${url}: HTTP ${response.status}`);
}
return response.json();
}
async function loadRegisterData() {
const [emts, casps, nonCompliant] = await Promise.all([
fetchJson('data/emts.json'),
fetchJson('data/casps.json'),
fetchJson('data/non-compliant.json')
]);
if (!Array.isArray(emts) || emts.length === 0 || !Array.isArray(casps) || !Array.isArray(nonCompliant)) {
throw new Error('Register data is empty or has an unexpected shape');
}
data = emts;
caspsData = casps;
nonCompliantData = nonCompliant;
}
const changelogRegisterLabels = {
emt: 'EMT issuers',
casps: 'CASPs',
nonCompliant: 'Non-compliant entities'
};
function formatSnapshotDate(value) {
if (!value) {
return '';
}
const parts = String(value).split(/[\/\-.]/);
if (parts.length === 3) {
let day;
let month;
let year;
if (parts[0].length === 4) {
[year, month, day] = parts;
} else {
[day, month, year] = parts;
}
const parsed = new Date(Date.UTC(Number(year), Number(month) - 1, Number(day)));
if (!Number.isNaN(parsed.getTime())) {
return parsed.toLocaleDateString('en-GB', { day: 'numeric', month: 'long', year: 'numeric', timeZone: 'UTC' });
}
}
return String(value);
}
// Non-fatal: freshness info is a trust signal, not a dependency
async function loadSnapshotInfo() {
const el = document.getElementById('dataFreshness');
if (!el) {
return;
}
try {
const snapshot = await fetchJson('data/snapshot.json');
const pieces = [];
const snapshotDate = formatSnapshotDate(snapshot.emtSnapshotDate || snapshot.caspsSnapshotDate);
if (snapshotDate) {
pieces.push(`Register snapshot: ${snapshotDate}`);
}
let stale = false;
if (snapshot.lastUpdated) {
const updated = new Date(snapshot.lastUpdated);
if (!Number.isNaN(updated.getTime())) {
pieces.push(`last checked ${updated.toLocaleDateString('en-GB', { day: 'numeric', month: 'long', year: 'numeric' })}`);
// ESMA republishes weekly; older than two weeks means updates stopped
stale = (Date.now() - updated.getTime()) / 86400000 > 14;
}
}
if (pieces.length === 0) {
return;
}
el.innerHTML = esc(pieces.join(' · ')) + (stale
? ' <span class="ml-2 inline-flex items-center px-2 py-0.5 rounded-full text-xs font-semibold bg-amber-100 text-amber-800">Data may be out of date</span>'
: '');
} catch (error) {
// Leave the line empty
}
}
// Non-fatal: the dashboard works without change history
async function loadChangelog() {
const container = document.getElementById('changelogContainer');
if (!container) {
return;
}
try {
const entries = await fetchJson('data/changelog.json');
if (!Array.isArray(entries) || entries.length === 0) {
container.innerHTML = '<p class="text-gray-500">No changes recorded yet. Additions and removals will appear here after future register updates.</p>';
return;
}
container.innerHTML = entries.slice(0, 5).map(entry => {
const items = Object.entries(entry.changes || {}).map(([register, change]) => {
const parts = [];
if (Array.isArray(change.added) && change.added.length) {
parts.push(`<span class="text-green-700 font-semibold">+${change.added.length}</span> ${esc(change.added.join(', '))}`);
}
if (Array.isArray(change.removed) && change.removed.length) {
parts.push(`<span class="text-red-700 font-semibold">−${change.removed.length}</span> ${esc(change.removed.join(', '))}`);
}
if (parts.length === 0) {
return '';
}
return `<li><span class="font-medium">${esc(changelogRegisterLabels[register] || register)}:</span> ${parts.join(' · ')}</li>`;
}).join('');
return `
<div>
<p class="font-semibold text-gray-800">${esc(entry.date)}</p>
<ul class="ml-5 list-disc space-y-1">${items}</ul>
</div>
`;
}).join('');
} catch (error) {
container.innerHTML = '<p class="text-gray-500">Change history is currently unavailable.</p>';
}
}
// Dynamic calculation functions
function getCurrencyFields(items) {
const standardFields = ['id', 'issuer', 'state', 'authority', 'tokens', 'count'];
const fields = new Set();
items.forEach(item => {
Object.keys(item || {}).forEach(key => {
if (!standardFields.includes(key)) {
fields.add(key);
}
});
});
return Array.from(fields);
}
function calculateCurrencyTotals() {
const currencies = {};
// Get all currency columns from data (excluding standard fields)
const currencyFields = getCurrencyFields(data);
currencyFields.forEach(currency => {
const total = data.reduce((sum, item) => sum + (item[currency] || 0), 0);
if (total > 0) {
currencies[currency.toUpperCase()] = total;
}
});
return currencies;
}
function generateKPICards() {
const container = document.getElementById('kpiContainer');
const currencies = calculateCurrencyTotals();
// Base KPI cards
const baseKPIs = [
{
title: 'Total Issuers',
value: data.length,
subtitle: 'Active EMT Providers',
icon: '🏢',
color: 'kpi-teal'
},
{
title: 'Total Tokens',
value: data.reduce((sum, item) => sum + item.count, 0),
subtitle: 'Authorized EMTs',
icon: '🪙',
color: 'kpi-blue'
}
];
// Currency KPI cards
const currencyKPIs = Object.entries(currencies).map(([currency, count], index) => {
const info = currencyInfo[currency] || { symbol: '💶', name: currency, color: 'teal' };
return {
title: `${currency} Tokens`,
value: count,
subtitle: `${info.name}-backed`,
icon: info.symbol,
color: kpiColors[(index + 2) % kpiColors.length]
};
});
const allKPIs = [...baseKPIs, ...currencyKPIs];
// Adjust grid columns based on number of KPIs
const gridCols = Math.min(allKPIs.length, 6);
container.className = `grid grid-cols-1 md:grid-cols-2 lg:grid-cols-${gridCols} gap-6 mb-8 fade-in`;
container.innerHTML = allKPIs.map(kpi => `
<div class="kpi-card ${kpi.color} p-6 rounded-2xl shadow-lg text-white card-hover">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-90 font-medium">${esc(kpi.title)}</p>
<p class="text-3xl font-bold mt-2">${esc(kpi.value)}</p>
<p class="text-sm opacity-80 mt-1">${esc(kpi.subtitle)}</p>
</div>
<div class="text-4xl opacity-80" aria-hidden="true">${kpi.icon}</div>
</div>
</div>
`).join('');
}
function buildCaspsKpiCards(dataToShow) {
const totalProviders = dataToShow.length;
const normalizedCountries = dataToShow.map(item => {
const country = (item.memberState || '').trim();
return country.length > 0 ? country : 'Unknown';
});
const uniqueCountries = new Set(normalizedCountries.map(country => country.toLowerCase()));
const totalCountries = normalizedCountries.length > 0 ? uniqueCountries.size : 0;
const nonCompliantCaspsCount = nonCompliantData.length;
return `
<div class="kpi-card kpi-teal p-6 rounded-2xl shadow-lg text-white card-hover">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-90 font-medium">Total Providers</p>
<p class="text-3xl font-bold mt-2">${totalProviders}</p>
<p class="text-sm opacity-80 mt-1">Registered CASP Providers</p>
</div>
<div class="text-4xl opacity-80">🏢</div>
</div>
</div>
<div class="kpi-card kpi-blue p-6 rounded-2xl shadow-lg text-white card-hover">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-90 font-medium">Total Countries</p>
<p class="text-3xl font-bold mt-2">${totalCountries}</p>
<p class="text-sm opacity-80 mt-1">Countries Represented</p>
</div>
<div class="text-4xl opacity-80">🌍</div>
</div>
</div>
<div class="kpi-card kpi-red p-6 rounded-2xl shadow-lg text-white card-hover">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-90 font-medium">Non-Compliant CASPs</p>
<p class="text-3xl font-bold mt-2">${nonCompliantCaspsCount}</p>
<p class="text-sm opacity-80 mt-1">Flagged Providers</p>
</div>
<div class="text-4xl opacity-80">⚠️</div>
</div>
</div>
`;
}
function updateCaspsKpis() {
const container = document.getElementById('caspsKpiContainer');
if (container) {
container.innerHTML = buildCaspsKpiCards(caspsData);
}
}
// Country and authority distributions (sorted by count descending),
// recomputed once the register data loads
let countryData = [];
let authorityData = [];
let caspsCountryData = [];
let caspsAuthorityData = [];
function countBy(items, getKey) {
return Object.entries(items.reduce((acc, item) => {
const key = getKey(item);
acc[key] = (acc[key] || 0) + 1;
return acc;
}, {})).sort((a, b) => b[1] - a[1]);
}
function computeAggregates() {
countryData = countBy(data, item => item.state);
authorityData = countBy(data, item => item.authority);
caspsCountryData = countBy(caspsData, item => item.memberState || 'Unknown');
caspsAuthorityData = countBy(caspsData, item => item.authority || 'Unknown');
}
// === Shrink header on scroll ===
window.addEventListener('scroll', () => {
const header = document.querySelector('.header-sticky');
if (window.scrollY > 20) {
header.classList.add('shrink');
} else {
header.classList.remove('shrink');
}
});
// Track the site header height (it shrinks on scroll and changes on
// resize) so the sticky table headers pin just below it
const siteHeaderEl = document.querySelector('.header-sticky');
if (siteHeaderEl && 'ResizeObserver' in window) {
const setSiteHeaderHeight = () => {
document.documentElement.style.setProperty('--site-header-height', `${siteHeaderEl.offsetHeight}px`);
};
setSiteHeaderHeight();
new ResizeObserver(setSiteHeaderHeight).observe(siteHeaderEl, { box: 'border-box' });
}
// Initialize dashboard
function initDashboard() {
generateKPICards();
updateCaspsKpis();
populateCountryChart();
populateAuthorityChart();
populateCaspsCountryChart();
populateCaspsAuthorityChart();
}
function populateCountryChart() {
const container = document.getElementById('countryChart');
if (!container || countryData.length === 0) {
return;
}
const maxCount = countryData[0][1]; // First item has highest count due to sorting
container.innerHTML = countryData.map(([country, count]) => `
<div class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<span class="text-xl" aria-hidden="true">${countryFlags[country] || '🏳️'}</span>
<span class="text-gray-700 font-medium">${esc(country)}</span>
</div>
<div class="flex items-center space-x-3">
<div class="w-32 bg-gray-200 rounded-full h-3">
<div class="bg-gradient-to-r from-teal-500 to-blue-600 h-3 rounded-full progress-bar"
style="width: ${(count / maxCount) * 100}%"></div>
</div>
<span class="text-teal-600 font-bold text-lg">${count}</span>
</div>
</div>
`).join('');
}
function populateAuthorityChart() {
const container = document.getElementById('authorityChart');
if (!container || authorityData.length === 0) {
return;
}
const maxCount = authorityData[0][1]; // First item has highest count due to sorting
container.innerHTML = authorityData.map(([authority, count]) => `
<div class="flex items-center justify-between">
<span class="text-gray-700 font-medium text-sm">${esc(authority)}</span>
<div class="flex items-center space-x-3">
<div class="w-32 bg-gray-200 rounded-full h-3">
<div class="bg-gradient-to-r from-teal-500 to-blue-600 h-3 rounded-full progress-bar"
style="width: ${(count / maxCount) * 100}%"></div>
</div>
<span class="text-teal-600 font-bold text-lg">${count}</span>
</div>
</div>
`).join('');
}
function populateCaspsCountryChart() {
const container = document.getElementById('caspsCountryChart');
if (!container) {
return;
}
if (caspsCountryData.length === 0) {
container.innerHTML = '<p class="text-gray-500 text-sm">No CASP country data available.</p>';
return;
}
const maxCount = caspsCountryData[0][1];
container.innerHTML = caspsCountryData.map(([country, count]) => `
<div class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<span class="text-xl" aria-hidden="true">${countryFlags[country] || '🏳️'}</span>
<span class="text-gray-700 font-medium">${esc(country)}</span>
</div>
<div class="flex items-center space-x-3">
<div class="w-32 bg-gray-200 rounded-full h-3">
<div class="bg-gradient-to-r from-teal-500 to-blue-600 h-3 rounded-full progress-bar"
style="width: ${(count / maxCount) * 100}%"></div>
</div>
<span class="text-teal-600 font-bold text-lg">${count}</span>
</div>
</div>
`).join('');
}
function populateCaspsAuthorityChart() {
const container = document.getElementById('caspsAuthorityChart');
if (!container) {
return;
}
if (caspsAuthorityData.length === 0) {
container.innerHTML = '<p class="text-gray-500 text-sm">No CASP authority data available.</p>';
return;
}
const maxCount = caspsAuthorityData[0][1];
container.innerHTML = caspsAuthorityData.map(([authority, count]) => `
<div class="flex items-center justify-between">
<span class="text-gray-700 font-medium text-sm">${esc(authority)}</span>
<div class="flex items-center space-x-3">
<div class="w-32 bg-gray-200 rounded-full h-3">
<div class="bg-gradient-to-r from-teal-500 to-blue-600 h-3 rounded-full progress-bar"
style="width: ${(count / maxCount) * 100}%"></div>
</div>
<span class="text-teal-600 font-bold text-lg">${count}</span>
</div>
</div>
`).join('');
}
// Legacy #tab bookmarks (pre-refactor the registers were tabs inside
// this page). Forward them to the standalone intent pages so any old
// shared link still lands on the right register.
const legacyHashRedirects = {
'#details': 'emt-tracker.html',
'#emts': 'emt-tracker.html',
'#casps': 'casp-tracker.html',
'#non-compliant': 'non-compliant-casps.html',
'#noncompliant': 'non-compliant-casps.html'
};
const legacyTarget = legacyHashRedirects[window.location.hash.toLowerCase()];
if (legacyTarget) {
window.location.replace(legacyTarget);
}
// Initialize on page load
async function bootDashboard() {
const loadingNotice = document.getElementById('dataLoadingNotice');
const errorNotice = document.getElementById('dataErrorNotice');
try {
await loadRegisterData();
} catch (error) {
console.error('Failed to load register data:', error);
if (loadingNotice) loadingNotice.classList.add('hidden');
if (errorNotice) errorNotice.classList.remove('hidden');
return;
}
if (loadingNotice) loadingNotice.classList.add('hidden');
computeAggregates();
initDashboard();
loadChangelog();
loadSnapshotInfo();
}
document.addEventListener('DOMContentLoaded', bootDashboard);
</script>
<script>
document.addEventListener('DOMContentLoaded', () => {
const consentBanner = document.getElementById('cookieConsent');
if (!consentBanner) {
return;
}
const storageKey = 'micardashboard-cookie-consent';
const getStoredValue = () => {
try {
return window.localStorage.getItem(storageKey);
} catch (error) {
return null;
}
};
const setStoredValue = (value) => {
try {
window.localStorage.setItem(storageKey, value);
} catch (error) {
// Ignore storage errors (e.g., private browsing)
}
};
const hideBanner = () => {
consentBanner.classList.add('cookie-hidden');
consentBanner.setAttribute('aria-hidden', 'true');
};
const showBanner = () => {
consentBanner.classList.remove('cookie-hidden');
consentBanner.removeAttribute('aria-hidden');
};
const acceptButton = document.getElementById('cookieAccept');
const dismissButton = document.getElementById('cookieDismiss');
const remindButton = document.getElementById('cookieRemind');
acceptButton?.addEventListener('click', () => {
setStoredValue('accepted');
hideBanner();
});
const handleRemind = () => {
hideBanner();
};
dismissButton?.addEventListener('click', handleRemind);
remindButton?.addEventListener('click', handleRemind);
if (!getStoredValue()) {
window.setTimeout(showBanner, 800);
}
});
</script>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.getElementById('year').textContent = new Date().getFullYear();
});
</script>
<script src="assets/js/mobile-menu.js" defer></script>
<!-- Polyfill to render flag emojis correctly on Windows-based browsers (vendored) -->
<script type="module" defer>
import { polyfillCountryFlagEmojis } from './assets/vendor/flags/country-flag-emoji-polyfill.mjs';