forked from w3c-ccg/did-method-registry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·976 lines (940 loc) · 21.8 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>DID Method Registry</title>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'/>
<!--
=== NOTA BENE ===
For the three scripts below, if your spec resides on dev.w3 you can check them
out in the same tree and use relative links so that they'll work offline,
-->
<script src='https://www.w3.org/Tools/respec/respec-w3c-common' class='remove'></script>
<script type="text/javascript" class="remove">
var respecConfig = {
// specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
specStatus: "CG-DRAFT",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "did-method-registry",
// subtitle
subtitle: "A registry for Decentralized Identifier Methods",
// if you wish the publication date to be other than today, set this
// publishDate: "2009-08-06",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
// previousPublishDate: "1977-03-15",
// previousMaturity: "WD",
// extend the bibliography entries
//localBiblio: ccg.localBiblio,
github: "https://github.com/w3c-ccg/did-method-registry/",
includePermalinks: false,
// if there a publicly available Editor's Draft, this is the link
edDraftURI: "https://w3c-ccg.github.io/did-method-registry/",
// if this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2009-08-05",
// editors, add as many as you like
// only "name" is required
editors: [
{ name: "Manu Sporny", url: "http://manu.sporny.org/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/" },
{ name: "Drummond Reed", url: "https://www.linkedin.com/in/drummondreed/",
company: "Evernym", companyURL: "https://evernym.com/"}
],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
// only "name" is required. Same format as editors.
authors: [
{ name: "Credentials Community Group", url: "https://w3c-ccg.github.io/",
company: "W3C", companyURL: "https://www.w3.org/" }
],
// name of the WG
wg: "Credentials Community Group",
// URI of the public WG page
wgURI: "https://www.w3.org/community/credentials/",
// name (with the @w3c.org) of the public mailing to which comments are due
wgPublicList: "public-credentials",
// URI of the patent status for this WG, for Rec-track documents
// !!!! IMPORTANT !!!!
// This is important for Rec-track documents, do not copy a patent URI from a random
// document unless you know what you're doing. If in doubt ask your friendly neighbourhood
// Team Contact.
wgPatentURI: "https://www.w3.org/community/about/agreements/cla/",
maxTocLevel: 4,
inlineCSS: true
};
</script>
</head>
<body>
<section id='abstract'>
<p>
This document serves as an informative registry for all known Decentralized
Identifier Methods and their associated specifications.
</p>
</section>
<section id='sotd'>
<p>
Comments regarding this document are welcome. Please file issues
directly on <a href="https://github.com/w3c-ccg/did-spec/issues/">GitHub</a>,
or send them to
<a href="mailto:[email protected]">[email protected]</a>
(<a href="mailto:[email protected]?subject=subscribe">subscribe</a>,
<a href="https://lists.w3.org/Archives/Public/public-credentials/">archives</a>).
</p>
<p>
Portions of the work on this specification have been funded by the
United States Department of Homeland Security's Science and Technology
Directorate under contracts HSHQDC-16-R00012-H-SB2016-1-002 and
HSHQDC-17-C-00019. The content of this specification does not necessarily
reflect the position or the policy of the U.S. Government and no official
endorsement should be inferred.
</p>
<p>
Work on this specification has also been supported by the Rebooting the
Web of Trust community facilitated by Christopher Allen, Shannon Appelcline,
Kiara Robles, Brian Weller, Betty Dhamers, Kaliya Young, Manu Sporny,
Drummond Reed, and Joe Andrieu.
</p>
</section>
<section>
<h1>Introduction</h1>
<p>
This document contains a list of all known Decentralized Identifier Methods
and their associated specifications.
</p>
</section>
<section>
<h1>The Registration Process</h1>
<p>
Software implementers may find that the existing Decentralized
Identifier Methods listed in this repository are not suitable for their
use case and may need to add a new method to this registry.
Adding a Decentralized Identifier Method to this list is designed to be a
lightweight, community-driven process. In order to add a new method to this
registry, an implementer MUST:
</p>
<ol>
<li>
Implement at least an experimental version of the new DID Method.
</li>
<li>Create a specification describing the new DID Method that is publicly
available and intended to be conformant with the DID specification at
<a href="https://w3c-ccg.github.io/did-spec/">https://w3c-ccg.github.io/did-spec/</a>.
Ensure that the title in the specification contains a version number.</li>
<li>
Request that the specification be added to this registry by submitting a
Github Pull Request that adds the new method to the list of existing
methods, with URL.
</li>
</ol>
<p>
Specifications that do not meet these criteria will not be accepted. Old listings which fall out of conformance may be removed.
</p>
<p>
Implementers that would like help or guidance during this process are urged
to join the <a href="https://github.com/w3c-ccg/w3c-ccg.github.io/blob/master/joining.md">W3C Credentials Community Group</a>
and request assistance via the
<a href="https://lists.w3.org/Archives/Public/public-credentials/">mailing list</a>.
</p>
</section>
<section>
<h1>The Registry</h1>
<p>
This table summarizes the DID method specifications currently in development.
The links will be updated as subsequent Implementer’s Drafts are produced.
</p>
<table class="simple">
<thead>
<tr>
<th>Method Name</th>
<th>Status</th>
<th>DLT or Network</th>
<th>Authors</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>
did:abt:
</td>
<td>
PROVISIONAL
</td>
<td>
ABT Network
</td>
<td>
ArcBlock
</td>
<td>
<a href="https://arcblock.github.io/abt-did-spec/">ABT DID Method</a>
</td>
</tr>
<tr>
<td>
did:btcr:
</td>
<td>
PROVISIONAL
</td>
<td>
Bitcoin
</td>
<td>
Christopher Allen, Ryan Grant, Kim Hamilton Duffy
</td>
<td>
<a href="https://w3c-ccg.github.io/didm-btcr">BTCR DID Method</a>
</td>
</tr>
<tr>
<td>
did:stack:
</td>
<td>
PROVISIONAL
</td>
<td>
Bitcoin
</td>
<td>
Jude Nelson
</td>
<td>
<a href="https://github.com/blockstack/blockstack-core/blob/master/docs/blockstack-did-spec.md">Blockstack DID Method</a>
</td>
</tr>
<tr>
<td>
did:erc725:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Markus Sabadello, Fabian Vogelsteller, Peter Kolarov
</td>
<td>
<a href="https://github.com/WebOfTrustInfo/rebooting-the-web-of-trust-spring2018/blob/master/topics-and-advance-readings/DID-Method-erc725.md">erc725 DID Method</a>
</td>
</tr>
<tr>
<td>
did:example:
</td>
<td>
PROVISIONAL
</td>
<td>
DID Specification
</td>
<td>
W3C Credentials Community Group
</td>
<td>
<a href="https://w3c-ccg.github.io/did-spec/">DID Specification</a>
</td>
</tr>
<tr>
<td>
did:ipid:
</td>
<td>
PROVISIONAL
</td>
<td>
IPFS
</td>
<td>
TranSendX
</td>
<td>
<a href="https://did-ipid.github.io/ipid-did-method/">IPID DID method</a>
</td>
</tr>
<tr>
<td>
did:life:
</td>
<td>
PROVISIONAL
</td>
<td>
RChain
</td>
<td>
lifeID Foundation
</td>
<td>
<a href="https://lifeid.github.io/did-method-spec/">lifeID DID Method</a>
</td>
</tr>
<tr>
<td>
did:sov:
</td>
<td>
PROVISIONAL
</td>
<td>
Sovrin
</td>
<td>
Mike Lodder
</td>
<td>
<a href="https://sovrin-foundation.github.io/sovrin/spec/did-method-spec-template.html">Sovrin DID Method</a>
</td>
</tr>
<tr>
<td>
did:uport:
</td>
<td>
DEPRECATED
</td>
<td>
Ethereum
</td>
<td>
uPort
</td>
<td>
</td>
</tr>
<tr>
<td>
did:ethr:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
uPort
</td>
<td>
<a href="https://github.com/uport-project/ethr-did-resolver/blob/develop/doc/did-method-spec.md">ETHR DID Method</a>
</td>
</tr>
<tr>
<td>
did:v1:
</td>
<td>
PROVISIONAL
</td>
<td>
Veres One
</td>
<td>
Digital Bazaar
</td>
<td>
<a href="https://w3c-ccg.github.io/did-method-v1/">Veres One DID Method</a>
</td>
</tr>
<tr>
<td>
did:com:
</td>
<td>
PROVISIONAL
</td>
<td>
commercio.network
</td>
<td>
Commercio Consortium
</td>
<td>
<a href="https://github.com/commercionetwork/Commercio.network-DID-Method-Specification/">Commercio.network DID Method</a>
</td>
</tr>
<tr>
<td>
did:dom:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Dominode
</td>
<td>
</td>
</tr>
<tr>
<td>
did:ont:
</td>
<td>
PROVISIONAL
</td>
<td>
Ontology
</td>
<td>
Ontology Foundation
</td>
<td>
<a href="https://github.com/ontio/ontology-DID/blob/master/docs/en/DID-ONT-method.md">Ontology DID Method</a>
</td>
</tr>
<tr>
<td>
did:vvo:
</td>
<td>
PROVISIONAL
</td>
<td>
Vivvo
</td>
<td>
Vivvo Application Studios
</td>
<td>
<a href="https://vivvo.github.io/vivvo-did-scheme/spec/did-method-spec-template.html">Vivvo DID Method</a>
</td>
</tr>
<tr>
<td>
did:aergo:
</td>
<td>
PROVISIONAL
</td>
<td>
<a href="https://www.aergo.io/">Aergo</a>
</td>
<td>
<a href="https://www.blocko.io/">Blocko</a>
</td>
<td>
<a href="https://github.com/aergoio/aergo-identity/blob/master/doc/did-method-spec.md">Aergo DID Method</a>
</td>
</tr>
<tr>
<td>
did:icon:
</td>
<td>
PROVISIONAL
</td>
<td>
ICON
</td>
<td>
ICONLOOP
</td>
<td>
<a href="https://github.com/icon-project/icon-DID/blob/master/docs/ICON-DID-method.md">ICON DID Method</a>
</td>
</tr>
<tr>
<td>
did:iwt:
</td>
<td>
PROVISIONAL
</td>
<td>
InfoWallet
</td>
<td>
Raonsecure
</td>
<td>
<a href="https://github.com/infowallet/did_method/blob/master/did_method.md">InfoWallet DID Method</a>
</td>
</tr>
<tr>
<td>
did:ockam:
</td>
<td>
PROVISIONAL
</td>
<td>
Ockam
</td>
<td>
Ockam
</td>
<td>
<a href="https://github.com/ockam-network/did-method-spec/blob/master/README.md">Ockam DID Method</a>
</td>
</tr>
<tr>
<td>
did:ala:
</td>
<td>
PROVISIONAL
</td>
<td>
Alastria
</td>
<td>
Alastria National Blockchain Ecosystem
</td>
<td>
<a href="https://github.com/alastria/alastria-identity/wiki/Alastria-DID-Method-Specification-(Quorum-version)">Alastria DID Method</a>
</td>
</tr>
<tr>
<td>
did:op:
</td>
<td>
PROVISIONAL
</td>
<td>
Ocean Protocol
</td>
<td>
Ocean Protocol
</td>
<td>
<a href="https://github.com/oceanprotocol/OEPs/blob/master/7/v0.2/README.md">Ocean Protocol DID Method</a>
</td>
</tr>
<tr>
<td>
did:jlinc:
</td>
<td>
PROVISIONAL
</td>
<td>
JLINC Protocol
</td>
<td>
Victor Grey
</td>
<td>
<a href="https://did-spec.jlinc.org/">JLINC Protocol DID Method</a>
</td>
</tr>
<tr>
<td>
did:ion:
</td>
<td>
PROVISIONAL
</td>
<td>
Bitcoin
</td>
<td>
Various DIF contributors
</td>
<td>
<a href="https://github.com/decentralized-identity/ion-did-method">ION DID Method</a>
</td>
</tr>
<tr>
<td>
did:jolo:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Jolocom
</td>
<td>
<a href="https://github.com/jolocom/jolocom-did-driver/blob/master/jolocom-did-method-specification.md">Jolocom DID Method</a>
</td>
</tr>
<tr>
<td>
did:bryk:
</td>
<td>
PROVISIONAL
</td>
<td>
bryk
</td>
<td>
Marcos Allende, Sandra Murcia, Flavia Munhoso, Ruben Cessa
</td>
<td>
<a href="https://github.com/bryk-io/did-method/blob/master/README.md">bryk DID Method</a>
</td>
</tr>
<tr>
<td>
did:peer:
</td>
<td>
PROVISIONAL
</td>
<td>
peer
</td>
<td>
Daniel Hardman
</td>
<td>
<a href="https://openssi.github.io/peer-did-method-spec/index.html">peer DID Method</a>
</td>
</tr>
<tr>
<td>
did:selfkey:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
SelfKey
</td>
<td>
<a href="https://github.com/SelfKeyFoundation/selfkey-identity/blob/develop/DIDMethodSpecs.md">SelfKey DID Method</a>
</td>
</tr>
<tr>
<td>
did:meta:
</td>
<td>
PROVISIONAL
</td>
<td>
Metadium
</td>
<td>
Metadium Foundation
</td>
<td>
<a href="https://github.com/METADIUM/meta-DID/blob/master/doc/DID-method-metadium.md">Metadium DID Method</a>
</td>
</tr>
<tr>
<td>
did:tys:
</td>
<td>
PROVISIONAL
</td>
<td>
DID Specification
</td>
<td>
Chainyard
</td>
<td>
<a href="https://github.com/chainyard-tys/tys/blob/master/README.md">TYS DID Method</a>
</td>
</tr>
<tr>
<td>
did:git:
</td>
<td>
PROVISIONAL
</td>
<td>
DID Specification
</td>
<td>
Internet Identity Workshop
</td>
<td>
<a href="https://github.com/dhuseby/did-git-spec/blob/master/did-git-spec.md">Git DID Method</a>
</td>
</tr>
<tr>
<td>
did:tangle:
</td>
<td>
PROVISIONAL
</td>
<td>
IOTA Tangle
</td>
<td>
BiiLabs Co., Ltd.
</td>
<td>
<a href="https://github.com/TangleID/TangleID/blob/develop/did-method-spec.md">TangleID DID Method</a>
</td>
</tr>
<tr>
<td>
did:emtrust:
</td>
<td>
PROVISIONAL
</td>
<td>
Hyperledger Fabric
</td>
<td>
Halialabs Pte Ltd.
</td>
<td>
<a href="https://github.com/Halialabs/did-spec/blob/gh-pages/readme.md">Emtrust DID Method</a>
</td>
</tr>
<tr>
<td>
did:ttm:
</td>
<td>
PROVISIONAL
</td>
<td>
TMChain
</td>
<td>
Token.TM
</td>
<td>
<a href="https://github.com/TokenTM/TM-DID/blob/master/docs/en/DID_spec.md">TM DID Method</a>
</td>
</tr>
<tr>
<td>
did:wlk:
</td>
<td>
PROVISIONAL
</td>
<td>
Weelink Network
</td>
<td>
Weelink
</td>
<td>
<a href="https://weelink-team.github.io/weelink/DIDDesignEn">Weelink DID Method</a>
</td>
</tr>
<tr>
<td>
did:pistis:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Andrea Taglia, Matteo Sinico
</td>
<td>
<a href="https://github.com/uino95/ssi/blob/consensys/dashboard/server/pistis/pistis-did-resolver/README.md">Pistis DID Method</a>
</td>
</tr>
<tr>
<td>
did:holo:
</td>
<td>
PROVISIONAL
</td>
<td>
Holochain
</td>
<td>
Holo.Host
</td>
<td>
<a href="https://github.com/WebOfTrustInfo/rwot9-prague/blob/master/draft-documents/did:hc-method.md">Holochain DID Method</a>
</td>
</tr>
<tr>
<td>
did:web:
</td>
<td>
PROVISIONAL
</td>
<td>
Web
</td>
<td>
Oliver Terbu, Mike Xu, Dmitri Zagidulin, Amy Guy
</td>
<td>
<a href="https://github.com/w3c-ccg/did-method-web">Web DID Method</a>
</td>
</tr>
<tr>
<td>
did:io:
</td>
<td>
PROVISIONAL
</td>
<td>
IoTeX
</td>
<td>
IoTeX Foundation
</td>
<td>
<a href="https://github.com/iotexproject/iotex-did/blob/master/README.md">IoTeX DID Method</a>
</td>
</tr>
<tr>
<td>
did:vaultie:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Vaultie Inc.
</td>
<td>
<a href="https://github.com/vaultie/vaultie-did-method/blob/master/vaultie-did-method-specification.md">Vaultie DID Method</a>
</td>
</tr>
<tr>
<td>
did:moac:
</td>
<td>
PROVISIONAL
</td>
<td>
MOAC
</td>
<td>
MOAC Blockchain Tech, Inc.
</td>
<td>
<a href="https://github.com/DavidRicardoWilde/moac-did/blob/master/did-moac-method.md">MOAC DID Method</a>
</td>
</tr>
<tr>
<td>
did:omn:
</td>
<td>
PROVISIONAL
</td>
<td>
OmniOne
</td>
<td>
OmniOne
</td>
<td>
<a href="https://github.com/OmniOneID/did_method/blob/master/did_method.md">OmniOne DID Method</a>
</td>
</tr>
<tr>
<td>
did:work:
</td>
<td>
PROVISIONAL
</td>
<td>
Hyperledger Fabric
</td>
<td>
Workday, Inc.
</td>
<td>
<a href="https://workday.github.io/work-did-method-spec/">Workday DID Method</a>
</td>
</tr>
<tr>
<td>
did:vid:
</td>
<td>
PROVISIONAL
</td>
<td>
VP
</td>
<td>
VP Inc.
</td>
<td>
<a href="https://github.com/vpayment/did-method-spec/blob/master/vid.md">VP DID Method</a>
</td>
</tr>
<tr>
<td>
did:ccp:
</td>
<td>
PROVISIONAL
</td>
<td>
Quorum
</td>
<td>
Baidu, Inc.
</td>
<td>
<a href="https://did.baidu.com/did-spec/">Cloud DID Method</a>
</td>
</tr>
<tr>
<td>
did:jnctn:
</td>
<td>
PROVISIONAL
</td>
<td>
Jnctn Network
</td>
<td>
Jnctn Limited
</td>
<td>
<a href="https://github.com/jnctn/did-method-spec/">JNCTN DID Method</a>
</td>
</tr>
<tr>
<td>
did:elastos:
</td>
<td>
PROVISIONAL
</td>
<td>
Elastos ID Sidechain
</td>
<td>
Elastos Foundation
</td>
<td>
<a href="https://github.com/elastos/Elastos.DID.Method/blob/master/DID/Elastos-DID-Method-Specification_en.md">Elastos DID Method</a>
</td>
</tr>
</tbody>
</table>
</section>
</section>
</body>
</html>