]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blame - src/index.html
Blank rows in initial table have no missing cells
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / src / index.html
CommitLineData
ebd8d4e8
IC
1<!DOCTYPE html>
2<html>
3 <head lang="en">
4 <meta charset="utf-8" />
5 <title>BIP39 - Mnemonic Code</title>
cee442b1 6 <link rel="stylesheet" href="css/bootstrap.min.css">
ebd8d4e8
IC
7 <meta content="Mnemonic code for generating deterministic keys" name="description"/>
8 <meta content="width=device-width, initial-scale=1.0" name="viewport" />
9 <meta content="bitcoin mnemonic converter" name="description" />
b630f83d 10 <meta content="Ian Coleman" name="author" />
ebd8d4e8
IC
11
12 <style>
f52dcdbd
IC
13 body {
14 padding-bottom: 32px;
15 }
d198865f
IC
16 .form-control[readonly] {
17 cursor: text;
dd566a1e 18 }
ebd8d4e8
IC
19 .feedback-container {
20 position: fixed;
21 top: 0;
22 width: 100%;
23 text-align: center;
24 z-index: 4;
25 }
26 .feedback {
27 display: table;
28 padding: 0.5em 1em;
29 background-color: orange;
30 margin: 0 auto;
31 font-size: 2em;
32 color: #444;
33 border: 2px solid #555;
34 border-top: 0;
35 border-bottom-left-radius: 20px 20px;
36 border-bottom-right-radius: 20px 20px;
37 }
55a9e51a
IC
38 .no-border {
39 border: 0;
40 box-shadow: inset 0 1px 1px rgba(0,0,0,.0);
41 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.0);
42 }
5ee7bb9e
IC
43 .phrase {
44 word-break: keep-all;
45 }
0a84fe6a 46 .generate-container .strength {
b0818b31
IC
47 /* override mobile width from bootstrap */
48 width: auto!important;
49 display: inline-block;
50 }
39836616 51 .languages * {
7c31e3cd
IC
52 padding-left: 10px;
53 }
d737abf6
IC
54 .monospace {
55 font-family: monospace;
56 }
0a84fe6a
IC
57 .entropy-container .filtered,
58 .entropy-container .binary {
59 word-wrap: break-word;
60 }
61 .entropy-container li {
62 padding-bottom: 5px;
63 }
b54c1218 64 .card-suit {
b2d61f56 65 font-size: 19px;
b54c1218
IC
66 line-height: 0;
67 }
68 .card-suit.club {
69 color: #009F00;
70 }
71 .card-suit.diamond {
72 color: #3D5DC4;
73 }
74 .card-suit.heart {
75 color: #F00;
76 }
77 .card-suit.spade {
78 color: #000;
79 }
ebd8d4e8
IC
80 </style>
81 </head>
82 <body>
83 <div class="container">
84
85 <h1 class="text-center">Mnemonic Code Converter</h1>
86 <hr>
87 <div class="row">
88 <div class="col-md-12">
d4779799 89 <h2>Mnemonic</h2>
ebd8d4e8 90 <form class="form-horizontal" role="form">
ebd8d4e8 91 <div class="form-group">
c6624d51
IC
92 <div class="col-sm-2"></div>
93 <div class="col-sm-10">
94 <p>You can enter an existing BIP39 mnemonic, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)</p>
95 <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a></p>
96 </div>
97 </div>
98 <div class="form-group generate-container">
b0818b31 99 <label class="col-sm-2 control-label"></label>
ebd8d4e8 100 <div class="col-sm-10">
b0818b31
IC
101 <div class="form-inline">
102 <div class="input-group-inline">
103 <button class="btn generate">Generate</button>
104 <span>a random</span>
105 <select id="strength" class="strength form-control">
106 <option value="3">3</option>
107 <option value="6">6</option>
108 <option value="9">9</option>
109 <option value="12">12</option>
110 <option value="15" selected>15</option>
111 <option value="18">18</option>
112 <option value="21">21</option>
113 <option value="24">24</option>
114 </select>
115 word mnemonic, or enter your own below.
116 </div>
117 </div>
ebd8d4e8 118 </div>
7c31e3cd 119 </div>
c6624d51 120 <div class="entropy-container hidden">
0a84fe6a
IC
121 <div class="form-group text-danger">
122 <label class="col-sm-2 control-label">Warning</label>
123 <div class="col-sm-10 form-control-static">
124 Entropy is an advanced feature.
125 Your mnemonic may be insecure if this feature is used incorrectly.
126 <a href="#entropy-notes">Read more</a>
439f0e25 127 </div>
1cf1bbaf 128 </div>
0a84fe6a
IC
129 <div class="form-group">
130 <label for="entropy" class="col-sm-2 control-label">Entropy</label>
131 <div class="col-sm-7">
132 <textarea id="entropy" rows="2" class="entropy form-control" placeholder="Accepts binary, base 6, 6-sided dice, base 10, hexadecimal, cards"></textarea>
a3a61b68
IC
133 <div class="row">
134 <label class="col-sm-3 control-label">Strength</label>
135 <div class="strength col-sm-3 form-control-static"></div>
136 <label class="col-sm-3 control-label">Event Count</label>
137 <div class="event-count col-sm-3 form-control-static"></div>
138 </div>
139 <div class="row">
140 <label class="col-sm-3 control-label">Entropy Type</label>
141 <div class="type col-sm-3 form-control-static"></div>
142 <label class="col-sm-3 control-label">Bits Per Event</label>
143 <div class="bits-per-event col-sm-3 form-control-static"></div>
144 </div>
145 <div class="row">
146 <label class="col-sm-3 control-label">Word Count</label>
147 <div class="word-count col-sm-3 form-control-static"></div>
148 <label class="col-sm-3 control-label">Total Bits</label>
149 <div class="bits col-sm-3 form-control-static"></div>
150 </div>
0a84fe6a
IC
151 <label class="col-sm-3 control-label">Filtered Entropy</label>
152 <div class="filtered col-sm-9 form-control-static"></div>
153 <label class="col-sm-3 control-label">Raw Binary</label>
154 <div class="binary col-sm-9 form-control-static"></div>
155 <label class="col-sm-3 control-label">Mnemonic Length</label>
156 <div class="col-sm-9">
1cf1bbaf 157 <select class="mnemonic-length form-control">
3599674d 158 <option value="raw">From entropy length (3 words per 32 bits)</option>
1cf1bbaf 159 <option value="12">12 Words</option>
55b592b4 160 <option value="15" selected>15 Words</option>
1cf1bbaf
IC
161 <option value="18">18 Words</option>
162 <option value="21">21 Words</option>
163 <option value="24">24 Words</option>
164 </select>
c6624d51 165 </div>
1cf1bbaf 166 </div>
0a84fe6a
IC
167 <div class="col-sm-3">
168 <p>Valid entropy values include:</p>
169 <ul>
170 <li><strong>Binary</strong> [0-1]<br>101010011</li>
171 <li><strong>Base 6</strong> [0-5]<br>123434014</li>
172 <li><strong>Dice</strong> [1-6]<br>62535634</li>
173 <li><strong>Base 10</strong> [0-9]<br>90834528</li>
174 <li><strong>Hex</strong> [0-9A-F]<br>4187a8bfd9</li>
175 <li><strong>Card</strong> [A2-9TJQK][CDHS]<br>ahqs9dtc</li>
176 </ul>
177 </div>
c6624d51
IC
178 </div>
179 </div>
180 <div class="form-group">
181 <div class="col-sm-2"></div>
182 <div class="col-sm-10 checkbox">
183 <label>
184 <input type="checkbox" class="use-entropy">
185 Supply my own source of entropy
186 </label>
187 </div>
188 </div>
189 <div class="form-group">
7c31e3cd
IC
190 <label class="col-sm-2 control-label"></label>
191 <div class="col-sm-10 languages">
192 <a href="#english">English</a>
193 <a href="#japanese" title="Japanese">日本語</a>
194 <a href="#spanish" title="Spanish">Español</a>
195 <a href="#chinese_simplified" title="Chinese (Simplified)">中文(简体)</a>
196 <a href="#chinese_traditional" title="Chinese (Traditional)">中文(繁體)</a>
197 <a href="#french" title="French">Français</a>
198 <a href="#italian" title="Italian">Italiano</a>
199 </div>
ebd8d4e8
IC
200 </div>
201 <div class="form-group">
b0818b31 202 <label for="phrase" class="col-sm-2 control-label">BIP39 Mnemonic</label>
ebd8d4e8 203 <div class="col-sm-10">
b0818b31 204 <textarea id="phrase" class="phrase form-control"></textarea>
ebd8d4e8
IC
205 </div>
206 </div>
1abcc511
PR
207 <div class="form-group">
208 <label for="passphrase" class="col-sm-2 control-label">BIP39 Passphrase (optional)</label>
209 <div class="col-sm-10">
210 <textarea id="passphrase" class="passphrase form-control"></textarea>
211 </div>
212 </div>
3e0ed16a
KK
213 <div class="form-group">
214 <label for="seed" class="col-sm-2 control-label">BIP39 Seed</label>
215 <div class="col-sm-10">
216 <textarea id="seed" class="seed form-control" readonly="readonly"></textarea>
217 </div>
218 </div>
4d457a38
IC
219 <div class="form-group">
220 <label for="network-phrase" class="col-sm-2 control-label">Coin</label>
221 <div class="col-sm-10">
222 <select id="network-phrase" class="network form-control">
7f15cb6e 223 <!-- populated by javascript -->
4d457a38
IC
224 </select>
225 </div>
226 </div>
ebd8d4e8
IC
227 <div class="form-group">
228 <label for="root-key" class="col-sm-2 control-label">BIP32 Root Key</label>
229 <div class="col-sm-10">
efe41586 230 <textarea id="root-key" class="root-key form-control"></textarea>
ebd8d4e8
IC
231 </div>
232 </div>
233 </form>
234 </div>
235 </div>
236
237 <hr>
238
239 <div class="row">
240 <div class="col-md-12">
241 <h2>Derivation Path</h2>
242 <ul class="derivation-type nav nav-tabs" role="tablist">
55a9e51a 243 <li id="bip44-tab" class="active">
23d4a0f1
IC
244 <a href="#bip44" role="tab" data-toggle="tab">BIP44</a>
245 </li>
3b40653f 246 <li id="bip32-tab">
23d4a0f1
IC
247 <a href="#bip32" role="tab" data-toggle="tab">BIP32</a>
248 </li>
ebd8d4e8
IC
249 </ul>
250 <div class="derivation-type tab-content">
55a9e51a 251 <div id="bip44" class="tab-pane active">
ebd8d4e8
IC
252 <form class="form-horizontal" role="form">
253 <br>
254 <div class="col-sm-2"></div>
255 <div class="col-sm-10">
256 <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki" target="_blank">BIP44 spec</a></p>
257 </div>
258 <div class="form-group">
259 <label for="purpose" class="col-sm-2 control-label">
260 <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#purpose" target="_blank">Purpose</a>
261 </label>
262 <div class="col-sm-10">
263 <input id="purpose" type="text" class="purpose form-control" value="44">
264 </div>
265 </div>
266 <div class="form-group">
267 <label for="coin" class="col-sm-2 control-label">
268 <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#registered-coin-types" target="_blank">Coin</a>
269 </label>
270 <div class="col-sm-10">
271 <input id="coin" type="text" class="coin form-control" value="0">
272 </div>
273 </div>
274 <div class="form-group">
275 <label for="account" class="col-sm-2 control-label">
276 <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#account" target="_blank">Account</a>
277 </label>
278 <div class="col-sm-10">
279 <input id="account" type="text" class="account form-control" value="0">
280 </div>
281 </div>
282 <div class="form-group">
283 <label for="change" class="col-sm-2 control-label">
284 <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#change" target="_blank">External / Internal</a>
285 </label>
286 <div class="col-sm-10">
287 <input id="change" type="text" class="change form-control" value="0">
288 </div>
289 </div>
290 <div class="form-group">
291 <label for="bip44-path" class="col-sm-2 control-label">BIP32 Derivation Path</label>
292 <div class="col-sm-10">
d198865f 293 <input id="bip44-path" type="text" class="path form-control" value="m/44'/0'/0'/0" readonly="readonly">
ebd8d4e8
IC
294 </div>
295 </div>
296 </form>
297 </div>
298 <div id="bip32" class="tab-pane">
299 <form class="form-horizontal" role="form">
300 <br>
301 <div class="col-sm-2"></div>
302 <div class="col-sm-10">
303 <p>For more info see the <a href="https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki" target="_blank">BIP32 spec</a></p>
304 </div>
305 <div class="form-group">
306 <label for="bip32-path" class="col-sm-2 control-label">BIP32 Derivation Path</label>
307 <div class="col-sm-10">
308 <input id="bip32-path" type="text" class="path form-control" value="m/0">
309 </div>
310 </div>
146e089e
IC
311 <div class="form-group">
312 <div class="col-sm-2"></div>
313 <label class="col-sm-10">
314 <input class="hardened-addresses" type="checkbox">
315 Use hardened addresses
316 </label>
317 </div>
55a9e51a
IC
318 <div class="form-group">
319 <label for="mycelium-path" class="col-sm-2 control-label">Mycelium Wallet</label>
320 <div class="col-sm-10">
321 <p class="form-control no-border">
535c9d0f
IC
322 <code>m/44'/0'/0'</code> generates extended keys for import / export.
323 </p>
324 <p class="form-control no-border">
325 <code>m/44'/0'/1'</code> to generate the next account. Continue incrementing for more accounts (most use a single account).
326 </p>
327 <p class="form-control no-border">
328 <code>m/44'/0'/0'/0</code> to generate public addresses.
329 </p>
330 <p class="form-control no-border">
331 <code>m/44'/0'/0'/1</code> to generate change addresses.
332 </p>
333 <p class="form-control no-border">
55a9e51a
IC
334 For more info see the <a href="http://www.mycelium.com/" target="_blank">Mycelium Wallet homepage</a>
335 </p>
336 </div>
337 </div>
8786746b
IC
338 <div class="form-group">
339 <label for="core-path" class="col-sm-2 control-label">Bitcoin Core</label>
340 <div class="col-sm-10">
341 <p class="form-control no-border">
342 Use path <code>m/0'/0'</code> with hardened addresses.
343 For more info see the <a href="https://github.com/bitcoin/bitcoin/pull/8035" target="_blank">Bitcoin Core BIP32 implementation</a>
344 </p>
345 </div>
346 </div>
aa51da11
IC
347 <div class="form-group">
348 <label class="col-sm-2 control-label">Block Explorers</label>
349 <div class="col-sm-10">
350 <p class="form-control no-border">
351 Use path <code>m/44'/0'/0'</code>.
352 Only enter the <code>xpub</code> extended key into block explorer search fields, never the <code>xpriv</code> key.
353 </p>
354 </div>
355 </div>
ebd8d4e8
IC
356 </form>
357 </div>
358 </div>
359 <form class="form-horizontal" role="form">
360 <div class="form-group">
361 <label for="extended-priv-key" class="col-sm-2 control-label">BIP32 Extended Key</label>
362 <div class="col-sm-10">
d198865f 363 <textarea id="extended-priv-key" class="extended-priv-key form-control" readonly="readonly"></textarea>
ebd8d4e8
IC
364 </div>
365 </div>
366 <div class="form-group">
367 <label for="extended-pub-key" class="col-sm-2 control-label">BIP32 Extended Key (addresses only)</label>
368 <div class="col-sm-10">
d198865f 369 <textarea id="extended-pub-key" class="extended-pub-key form-control" readonly="readonly"></textarea>
ebd8d4e8
IC
370 </div>
371 </div>
372 </form>
373 </div>
374 </div>
375
376 <hr>
377
378 <div class="row">
379 <div class="col-md-12">
380 <h2>Derived Addresses</h2>
381 <p>Note these addreses are derived from the <strong>BIP32 Extended Key</strong></p>
382 <table class="table table-striped">
383 <thead>
384 <th>
385 <div class="input-group">
ae30fed8 386 Path&nbsp;&nbsp;
ebd8d4e8
IC
387 <button class="index-toggle">Toggle</button>
388 </div>
389 </th>
390 <th>
391 <div class="input-group">
392 Address&nbsp;&nbsp;
393 <button class="address-toggle">Toggle</button>
394 </div>
395 </th>
1b12b2f5
IC
396 <th>
397 <div class="input-group">
398 Public Key&nbsp;&nbsp;
399 <button class="public-key-toggle">Toggle</button>
400 </div>
401 </th>
ebd8d4e8
IC
402 <th>
403 <div class="input-group">
404 Private Key&nbsp;&nbsp;
405 <button class="private-key-toggle">Toggle</button>
406 </div>
407 </th>
408 </thead>
d737abf6 409 <tbody class="addresses monospace">
a0a19620
IC
410 <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
411 <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
412 <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
413 <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
414 <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
ebd8d4e8
IC
415 </tbody>
416 </table>
417 </div>
418 </div>
419 <span>Show next </button>
420 <input type="number" class="rows-to-add" value="20">
421 <button class="more">Show</button>
422
423 <hr>
424
425 <div class="row">
426 <div class="col-md-12">
427 <h2>More info</h2>
428 <h3>BIP39 <span class="small">Mnemonic code for generating deterministic keys</span></h3>
429 <p>
430 Read more at the
431 <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki">official BIP39 spec</a>
432 </p>
433 <h3>BIP32 <span class="small">Hierarchical Deterministic Wallets</span></h3>
434 <p>
435 Read more at the
436 <a href="https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki" target="_blank">official BIP32 spec</a>
437 and see the demo at
438 <a href="http://bip32.org/" target="_blank">bip32.org</a>
439 </p>
440 <h3>BIP44 <span class="small">Multi-Account Hierarchy for Deterministic Wallets</span></h3>
441 <p>
442 Read more at the
443 <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki" target="_blank">official BIP44 spec</a>
444 </p>
445 <h3>Private Keys</h3>
446 <p>
447 Use private keys at
c90c680e 448 <a href="https://web.archive.org/web/20150707020924/https://brainwallet.org/" target="_blank">brainwallet.org</a>,
ebd8d4e8
IC
449 but be careful - it can be easy to make mistakes if you
450 don't know what you're doing
451 </p>
c6624d51
IC
452 <h3 id="entropy-notes">Entropy</h3>
453 <p>
454 Entropy values must be sourced from a
455 <a href="https://en.wikipedia.org/wiki/Random_number_generation" target="_blank">strong source of randomness</a>.
456 This means flipping a fair coin, rolling a fair dice, noise measurements etc. Do <strong>NOT</strong> use
457 phrases from books, lyrics from songs, your birthday or steet address, keyboard mashing, or anything you <i>think</i>
458 is random, because chances are <em>overwhelming</em> that it isn't random enough for the needs of this tool.
459 </p>
460 <p>
461 The random mnemonic generator on this page uses a
462 <a href="https://developer.mozilla.org/en-US/docs/Web/API/RandomSource/getRandomValues" target="_blank">cryptographically secure random number generator</a>,
463 and can generally be trusted more than your own intuition about randomness.
464 If cryptographic randomness isn't available in your browser, this page will show a warning and <i>will not generate
465 random mnemonics</i>.
466 </p>
467 <p>
468 <a href="https://bitcointalk.org/index.php?topic=311000.msg3345309#msg3345309" target="_blank">You are not a good source of entropy.</a>
469 </p>
ebd8d4e8
IC
470 </div>
471 </div>
45b8a745
IC
472
473 <hr>
474
c5863485
IC
475 <div class="row">
476 <div class="col-md-12">
477
478 <h2>Offline Usage</h2>
479
480 <p>
481 You can use this tool without having to be online.
482 </p>
483 <p>
484 In your browser, select file save-as, and save this page
485 as a file.
486 </p>
487 <p>
488 Double-click that file to open it in a browser
489 on any offline computer.
490 </p>
491 <p>
492 Alternatively, download it from
b630f83d
IC
493 <a href="https://github.com/iancoleman/bip39">
494 https://github.com/iancoleman/bip39
c5863485
IC
495 </a>
496
497 </div>
498 </div>
499
500 <hr>
501
45b8a745
IC
502 <div class="row">
503 <div class="col-md-12">
504
505 <h2>This project is 100% open-source code</h2>
506
507 <p>
508 <span>Get the source code at - </span>
b630f83d
IC
509 <a href="https://github.com/iancoleman/bip39" target="_blank">
510 https://github.com/iancoleman/bip39
45b8a745
IC
511 </a>
512 </p>
513
514 <h3>Libraries</h3>
515
516 <p>
517 <span>BitcoinJS - </span>
518 <a href="https://github.com/bitcoinjs/bitcoinjs-lib" target="_blank">
519 https://github.com/bitcoinjs/bitcoinjs-lib
520 </a>
521 </p>
522
523 <p>
524 <span>jsBIP39 - </span>
525 <a href="https://github.com/iancoleman/jsbip39" target="_blank">
526 https://github.com/iancoleman/jsbip39
527 </a>
528 </p>
529
530 <p>
0937f3ab
IC
531 <span>sjcl - </span>
532 <a href="https://github.com/bitwiseshiftleft/sjcl" target="_blank">
533 https://github.com/bitwiseshiftleft/sjcl
45b8a745
IC
534 </a>
535 </p>
536
537 <p>
538 <span>jQuery - </span>
539 <a href="https://jquery.com/" target="_blank">
540 https://jquery.com/
541 </a>
542 </p>
543
544 <p>
545 <span>Twitter Bootstrap - </span>
546 <a href="http://getbootstrap.com/" target="_blank">
547 http://getbootstrap.com/
548 </a>
549 </p>
550
551 </div>
552 </div>
553
ebd8d4e8
IC
554 </div>
555
556 <div class="feedback-container">
d26cce22 557 <div class="feedback">Loading...</div>
ebd8d4e8
IC
558 </div>
559
560 <script type="text/template" id="address-row-template">
561 <tr>
562 <td class="index"><span></span></td>
563 <td class="address"><span></span></td>
1b12b2f5 564 <td class="pubkey"><span></span></td>
ebd8d4e8
IC
565 <td class="privkey"><span></span></td>
566 </tr>
567 </script>
cee442b1
KK
568 <script src="js/jquery.min.js"></script>
569 <script src="js/bootstrap.min.js"></script>
563e401a 570 <script src="js/levenshtein.js"></script>
cee442b1
KK
571 <script src="js/bitcoinjs-1-5-7.js"></script>
572 <script src="js/bitcoinjs-extensions.js"></script>
573 <script src="js/sjcl-bip39.js"></script>
574 <script src="js/wordlist_english.js"></script>
3a8dbe99
IC
575 <script src="js/wordlist_japanese.js"></script>
576 <script src="js/wordlist_spanish.js"></script>
577 <script src="js/wordlist_chinese_simplified.js"></script>
578 <script src="js/wordlist_chinese_traditional.js"></script>
579 <script src="js/wordlist_french.js"></script>
580 <script src="js/wordlist_italian.js"></script>
cee442b1 581 <script src="js/jsbip39.js"></script>
b6dbc2a1 582 <script src="js/biginteger.js"></script>
b299a6a7 583 <script src="js/zxcvbn.js"></script>
c6624d51 584 <script src="js/entropy.js"></script>
cee442b1 585 <script src="js/index.js"></script>
ebd8d4e8
IC
586 </body>
587</html>