quarkdash 1.0.1 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/coverage/clover.xml +347 -165
  2. package/coverage/coverage-final.json +6 -4
  3. package/coverage/lcov-report/cipher.ts.html +1 -1
  4. package/coverage/lcov-report/crypto.ts.html +3 -3
  5. package/coverage/lcov-report/index.html +54 -24
  6. package/coverage/lcov-report/index.ts.html +16 -4
  7. package/coverage/lcov-report/kdf.ts.html +1 -1
  8. package/coverage/lcov-report/mac.ts.html +1 -1
  9. package/coverage/lcov-report/ringlwe.ts.html +73 -19
  10. package/coverage/lcov-report/sha.ts.html +877 -0
  11. package/coverage/lcov-report/shake.ts.html +571 -0
  12. package/coverage/lcov-report/utils.ts.html +23 -182
  13. package/coverage/lcov.info +487 -255
  14. package/dist/cjs/crypto.js +2 -2
  15. package/dist/cjs/crypto.js.map +1 -1
  16. package/dist/cjs/index.js +3 -0
  17. package/dist/cjs/index.js.map +1 -1
  18. package/dist/cjs/ringlwe.js +23 -6
  19. package/dist/cjs/ringlwe.js.map +1 -1
  20. package/dist/cjs/sha.js +242 -0
  21. package/dist/cjs/sha.js.map +1 -0
  22. package/dist/cjs/shake.js +159 -0
  23. package/dist/cjs/shake.js.map +1 -0
  24. package/dist/cjs/utils.js +3 -54
  25. package/dist/cjs/utils.js.map +1 -1
  26. package/dist/esm/crypto.js +2 -2
  27. package/dist/esm/crypto.js.map +1 -1
  28. package/dist/esm/index.js +3 -0
  29. package/dist/esm/index.js.map +1 -1
  30. package/dist/esm/ringlwe.js +23 -6
  31. package/dist/esm/ringlwe.js.map +1 -1
  32. package/dist/esm/sha.js +237 -0
  33. package/dist/esm/sha.js.map +1 -0
  34. package/dist/esm/shake.js +155 -0
  35. package/dist/esm/shake.js.map +1 -0
  36. package/dist/esm/utils.js +3 -54
  37. package/dist/esm/utils.js.map +1 -1
  38. package/dist/types/index.d.ts +2 -0
  39. package/dist/types/ringlwe.d.ts +13 -2
  40. package/dist/types/sha.d.ts +49 -0
  41. package/dist/types/shake.d.ts +53 -0
  42. package/dist/types/types.d.ts +2 -2
  43. package/dist/types/utils.d.ts +0 -12
  44. package/package.json +1 -1
  45. package/src/crypto.ts +2 -2
  46. package/src/index.ts +4 -0
  47. package/src/ringlwe.ts +30 -12
  48. package/src/sha.ts +265 -0
  49. package/src/shake.ts +163 -0
  50. package/src/types.ts +2 -2
  51. package/src/utils.ts +3 -56
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1775495859691" clover="3.2.0">
3
- <project timestamp="1775495859691" name="All files">
4
- <metrics statements="443" coveredstatements="328" conditionals="76" coveredconditionals="30" methods="79" coveredmethods="61" elements="598" coveredelements="419" complexity="0" loc="443" ncloc="443" packages="1" files="7" classes="7"/>
2
+ <coverage generated="1775556946758" clover="3.2.0">
3
+ <project timestamp="1775556946758" name="All files">
4
+ <metrics statements="619" coveredstatements="455" conditionals="94" coveredconditionals="40" methods="89" coveredmethods="67" elements="802" coveredelements="562" complexity="0" loc="619" ncloc="619" packages="1" files="9" classes="9"/>
5
5
  <file name="cipher.ts" path="/home/neurosell/Repos/quarkdash/src/cipher.ts">
6
6
  <metrics statements="84" coveredstatements="79" conditionals="10" coveredconditionals="5" methods="18" coveredmethods="14"/>
7
7
  <line num="12" count="1" type="stmt"/>
@@ -191,7 +191,7 @@
191
191
  <line num="304" count="0" type="stmt"/>
192
192
  </file>
193
193
  <file name="index.ts" path="/home/neurosell/Repos/quarkdash/src/index.ts">
194
- <metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
194
+ <metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
195
195
  <line num="11" count="1" type="stmt"/>
196
196
  <line num="12" count="1" type="stmt"/>
197
197
  <line num="15" count="1" type="stmt"/>
@@ -199,6 +199,8 @@
199
199
  <line num="19" count="1" type="stmt"/>
200
200
  <line num="20" count="1" type="stmt"/>
201
201
  <line num="23" count="1" type="stmt"/>
202
+ <line num="24" count="1" type="stmt"/>
203
+ <line num="27" count="1" type="stmt"/>
202
204
  </file>
203
205
  <file name="kdf.ts" path="/home/neurosell/Repos/quarkdash/src/kdf.ts">
204
206
  <metrics statements="24" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
@@ -241,230 +243,410 @@
241
243
  <line num="63" count="0" type="stmt"/>
242
244
  </file>
243
245
  <file name="ringlwe.ts" path="/home/neurosell/Repos/quarkdash/src/ringlwe.ts">
244
- <metrics statements="103" coveredstatements="103" conditionals="8" coveredconditionals="8" methods="16" coveredmethods="16"/>
246
+ <metrics statements="108" coveredstatements="108" conditionals="8" coveredconditionals="8" methods="17" coveredmethods="17"/>
245
247
  <line num="12" count="1" type="stmt"/>
246
- <line num="17" count="1" type="stmt"/>
247
- <line num="19" count="1" type="stmt"/>
248
+ <line num="13" count="1" type="stmt"/>
249
+ <line num="18" count="1" type="stmt"/>
248
250
  <line num="20" count="1" type="stmt"/>
249
251
  <line num="21" count="1" type="stmt"/>
250
252
  <line num="22" count="1" type="stmt"/>
251
- <line num="30" count="42" type="stmt"/>
253
+ <line num="23" count="1" type="stmt"/>
252
254
  <line num="31" count="42" type="stmt"/>
253
- <line num="32" count="10752" type="stmt"/>
254
- <line num="33" count="10752" type="cond" truecount="2" falsecount="0"/>
255
- <line num="34" count="7242" type="cond" truecount="2" falsecount="0"/>
256
- <line num="35" count="3696" type="stmt"/>
257
- <line num="37" count="42" type="stmt"/>
258
- <line num="46" count="14" type="stmt"/>
255
+ <line num="32" count="42" type="stmt"/>
256
+ <line num="33" count="10752" type="stmt"/>
257
+ <line num="34" count="10752" type="cond" truecount="2" falsecount="0"/>
258
+ <line num="35" count="7195" type="cond" truecount="2" falsecount="0"/>
259
+ <line num="36" count="3627" type="stmt"/>
260
+ <line num="38" count="42" type="stmt"/>
259
261
  <line num="47" count="14" type="stmt"/>
260
262
  <line num="48" count="14" type="stmt"/>
261
- <line num="49" count="3584" type="stmt"/>
263
+ <line num="49" count="14" type="stmt"/>
262
264
  <line num="50" count="3584" type="stmt"/>
263
- <line num="52" count="14" type="stmt"/>
264
- <line num="61" count="70" type="stmt"/>
265
+ <line num="51" count="3584" type="stmt"/>
266
+ <line num="53" count="14" type="stmt"/>
265
267
  <line num="62" count="70" type="stmt"/>
266
268
  <line num="63" count="70" type="stmt"/>
267
- <line num="64" count="560" type="stmt"/>
269
+ <line num="64" count="70" type="stmt"/>
268
270
  <line num="65" count="560" type="stmt"/>
269
- <line num="66" count="17850" type="stmt"/>
271
+ <line num="66" count="560" type="stmt"/>
270
272
  <line num="67" count="17850" type="stmt"/>
271
- <line num="68" count="71680" type="stmt"/>
273
+ <line num="68" count="17850" type="stmt"/>
272
274
  <line num="69" count="71680" type="stmt"/>
273
275
  <line num="70" count="71680" type="stmt"/>
274
276
  <line num="71" count="71680" type="stmt"/>
275
277
  <line num="72" count="71680" type="stmt"/>
276
- <line num="75" count="560" type="stmt"/>
277
- <line num="77" count="70" type="stmt"/>
278
- <line num="86" count="35" type="stmt"/>
278
+ <line num="73" count="71680" type="stmt"/>
279
+ <line num="76" count="560" type="stmt"/>
280
+ <line num="78" count="70" type="stmt"/>
279
281
  <line num="87" count="35" type="stmt"/>
280
282
  <line num="88" count="35" type="stmt"/>
281
- <line num="89" count="280" type="stmt"/>
283
+ <line num="89" count="35" type="stmt"/>
282
284
  <line num="90" count="280" type="stmt"/>
283
- <line num="91" count="8925" type="stmt"/>
285
+ <line num="91" count="280" type="stmt"/>
284
286
  <line num="92" count="8925" type="stmt"/>
285
- <line num="93" count="35840" type="stmt"/>
287
+ <line num="93" count="8925" type="stmt"/>
286
288
  <line num="94" count="35840" type="stmt"/>
287
289
  <line num="95" count="35840" type="stmt"/>
288
290
  <line num="96" count="35840" type="stmt"/>
289
291
  <line num="97" count="35840" type="stmt"/>
290
- <line num="100" count="280" type="stmt"/>
291
- <line num="102" count="8960" type="stmt"/>
292
- <line num="103" count="35" type="stmt"/>
293
- <line num="113" count="35" type="stmt"/>
292
+ <line num="98" count="35840" type="stmt"/>
293
+ <line num="101" count="280" type="stmt"/>
294
+ <line num="103" count="8960" type="stmt"/>
295
+ <line num="104" count="35" type="stmt"/>
294
296
  <line num="114" count="35" type="stmt"/>
295
297
  <line num="115" count="35" type="stmt"/>
296
- <line num="116" count="8960" type="stmt"/>
297
- <line num="117" count="35" type="stmt"/>
298
- <line num="127" count="49" type="stmt"/>
298
+ <line num="116" count="35" type="stmt"/>
299
+ <line num="117" count="8960" type="stmt"/>
300
+ <line num="118" count="35" type="stmt"/>
299
301
  <line num="128" count="49" type="stmt"/>
300
- <line num="129" count="12544" type="stmt"/>
302
+ <line num="129" count="49" type="stmt"/>
301
303
  <line num="130" count="12544" type="stmt"/>
302
304
  <line num="131" count="12544" type="stmt"/>
303
- <line num="133" count="49" type="stmt"/>
304
- <line num="143" count="28" type="stmt"/>
305
+ <line num="132" count="12544" type="stmt"/>
306
+ <line num="134" count="49" type="stmt"/>
305
307
  <line num="144" count="28" type="stmt"/>
306
- <line num="145" count="7168" type="stmt"/>
308
+ <line num="145" count="28" type="stmt"/>
307
309
  <line num="146" count="7168" type="stmt"/>
308
- <line num="148" count="28" type="stmt"/>
309
- <line num="158" count="14" type="stmt"/>
310
+ <line num="147" count="7168" type="stmt"/>
311
+ <line num="149" count="28" type="stmt"/>
310
312
  <line num="159" count="14" type="stmt"/>
311
- <line num="160" count="3584" type="cond" truecount="2" falsecount="0"/>
312
- <line num="161" count="3584" type="cond" truecount="1" falsecount="0"/>
313
- <line num="163" count="14" type="stmt"/>
314
- <line num="175" count="840" type="stmt"/>
315
- <line num="176" count="3780" type="cond" truecount="1" falsecount="0"/>
316
- <line num="177" count="840" type="stmt"/>
317
- <line num="188" count="1" type="stmt"/>
318
- <line num="189" count="3" type="stmt"/>
319
- <line num="190" count="1" type="stmt"/>
320
- <line num="199" count="14" type="stmt"/>
321
- <line num="207" count="14" type="stmt"/>
313
+ <line num="160" count="14" type="stmt"/>
314
+ <line num="161" count="3584" type="cond" truecount="2" falsecount="0"/>
315
+ <line num="162" count="3584" type="cond" truecount="1" falsecount="0"/>
316
+ <line num="164" count="14" type="stmt"/>
317
+ <line num="176" count="840" type="stmt"/>
318
+ <line num="177" count="3780" type="cond" truecount="1" falsecount="0"/>
319
+ <line num="178" count="840" type="stmt"/>
320
+ <line num="189" count="1" type="stmt"/>
321
+ <line num="190" count="3" type="stmt"/>
322
+ <line num="191" count="1" type="stmt"/>
323
+ <line num="200" count="14" type="stmt"/>
322
324
  <line num="208" count="14" type="stmt"/>
323
325
  <line num="209" count="14" type="stmt"/>
324
326
  <line num="210" count="14" type="stmt"/>
325
327
  <line num="211" count="14" type="stmt"/>
326
- <line num="212" count="3584" type="stmt"/>
327
- <line num="213" count="14" type="stmt"/>
328
+ <line num="212" count="14" type="stmt"/>
329
+ <line num="213" count="3584" type="stmt"/>
328
330
  <line num="214" count="14" type="stmt"/>
329
331
  <line num="215" count="14" type="stmt"/>
330
- <line num="225" count="7" type="stmt"/>
331
- <line num="234" count="7" type="stmt"/>
332
+ <line num="216" count="14" type="stmt"/>
333
+ <line num="226" count="7" type="stmt"/>
332
334
  <line num="235" count="7" type="stmt"/>
333
335
  <line num="236" count="7" type="stmt"/>
334
336
  <line num="237" count="7" type="stmt"/>
335
337
  <line num="238" count="7" type="stmt"/>
336
338
  <line num="239" count="7" type="stmt"/>
337
339
  <line num="240" count="7" type="stmt"/>
338
- <line num="241" count="1792" type="stmt"/>
339
- <line num="242" count="7" type="stmt"/>
340
+ <line num="241" count="7" type="stmt"/>
341
+ <line num="242" count="1792" type="stmt"/>
340
342
  <line num="243" count="7" type="stmt"/>
341
343
  <line num="244" count="7" type="stmt"/>
342
344
  <line num="245" count="7" type="stmt"/>
343
- <line num="256" count="7" type="stmt"/>
344
- <line num="266" count="7" type="stmt"/>
345
- <line num="267" count="7" type="stmt"/>
346
- <line num="268" count="7" type="stmt"/>
347
- <line num="269" count="7" type="stmt"/>
345
+ <line num="246" count="7" type="stmt"/>
346
+ <line num="247" count="7" type="stmt"/>
347
+ <line num="259" count="7" type="stmt"/>
348
+ <line num="270" count="7" type="stmt"/>
349
+ <line num="271" count="7" type="stmt"/>
350
+ <line num="272" count="7" type="stmt"/>
351
+ <line num="273" count="7" type="stmt"/>
352
+ <line num="274" count="7" type="stmt"/>
353
+ <line num="286" count="14" type="stmt"/>
354
+ <line num="287" count="14" type="stmt"/>
348
355
  </file>
349
- <file name="utils.ts" path="/home/neurosell/Repos/quarkdash/src/utils.ts">
350
- <metrics statements="117" coveredstatements="63" conditionals="26" coveredconditionals="7" methods="21" coveredmethods="17"/>
351
- <line num="10" count="1" type="stmt"/>
356
+ <file name="sha.ts" path="/home/neurosell/Repos/quarkdash/src/sha.ts">
357
+ <metrics statements="137" coveredstatements="71" conditionals="10" coveredconditionals="2" methods="6" coveredmethods="2"/>
358
+ <line num="13" count="1" type="stmt"/>
352
359
  <line num="15" count="1" type="stmt"/>
353
- <line num="17" count="1" type="stmt"/>
354
- <line num="25" count="49" type="stmt"/>
355
- <line num="26" count="49" type="stmt"/>
356
- <line num="35" count="0" type="cond" truecount="0" falsecount="1"/>
357
- <line num="36" count="0" type="stmt"/>
358
- <line num="37" count="0" type="stmt"/>
359
- <line num="38" count="0" type="stmt"/>
360
- <line num="40" count="0" type="stmt"/>
361
- <line num="50" count="35" type="stmt"/>
362
- <line num="51" count="35" type="stmt"/>
363
- <line num="52" count="35" type="stmt"/>
364
- <line num="53" count="35" type="stmt"/>
365
- <line num="54" count="49" type="stmt"/>
366
- <line num="55" count="49" type="stmt"/>
367
- <line num="56" count="49" type="stmt"/>
368
- <line num="57" count="49" type="stmt"/>
369
- <line num="58" count="49" type="stmt"/>
370
- <line num="59" count="49" type="stmt"/>
371
- <line num="60" count="49" type="stmt"/>
372
- <line num="61" count="49" type="stmt"/>
373
- <line num="62" count="49" type="stmt"/>
374
- <line num="63" count="49" type="stmt"/>
375
- <line num="65" count="35" type="stmt"/>
376
- <line num="75" count="0" type="stmt"/>
377
- <line num="76" count="0" type="stmt"/>
378
- <line num="77" count="0" type="stmt"/>
379
- <line num="78" count="0" type="stmt"/>
380
- <line num="79" count="0" type="stmt"/>
381
- <line num="80" count="0" type="stmt"/>
382
- <line num="81" count="0" type="stmt"/>
383
- <line num="82" count="0" type="stmt"/>
384
- <line num="83" count="0" type="stmt"/>
385
- <line num="84" count="0" type="stmt"/>
386
- <line num="85" count="0" type="stmt"/>
387
- <line num="86" count="0" type="stmt"/>
388
- <line num="87" count="0" type="stmt"/>
389
- <line num="88" count="0" type="stmt"/>
390
- <line num="90" count="0" type="stmt"/>
391
- <line num="99" count="268" type="stmt"/>
392
- <line num="100" count="268" type="stmt"/>
393
- <line num="101" count="129" type="stmt"/>
394
- <line num="102" count="129" type="stmt"/>
395
- <line num="103" count="129" type="stmt"/>
396
- <line num="104" count="268" type="stmt"/>
397
- <line num="105" count="268" type="stmt"/>
398
- <line num="107" count="129" type="stmt"/>
399
- <line num="117" count="22" type="stmt"/>
400
- <line num="120" count="22" type="cond" truecount="1" falsecount="2"/>
401
- <line num="121" count="0" type="cond" truecount="0" falsecount="1"/>
402
- <line num="122" count="0" type="cond" truecount="0" falsecount="2"/>
403
- <line num="123" count="0" type="stmt"/>
404
- <line num="125" count="0" type="stmt"/>
405
- <line num="129" count="0" type="stmt"/>
406
- <line num="133" count="22" type="cond" truecount="1" falsecount="0"/>
407
- <line num="134" count="22" type="cond" truecount="0" falsecount="1"/>
408
- <line num="135" count="0" type="stmt"/>
409
- <line num="138" count="22" type="stmt"/>
410
- <line num="142" count="0" type="cond" truecount="0" falsecount="3"/>
411
- <line num="143" count="0" type="stmt"/>
412
- <line num="146" count="0" type="stmt"/>
413
- <line num="156" count="225" type="stmt"/>
414
- <line num="166" count="22" type="stmt"/>
415
- <line num="167" count="22" type="cond" truecount="0" falsecount="1"/>
416
- <line num="168" count="0" type="stmt"/>
417
- <line num="171" count="22" type="stmt"/>
418
- <line num="172" count="203" type="cond" truecount="3" falsecount="1"/>
419
- <line num="173" count="0" type="stmt"/>
420
- <line num="177" count="22" type="stmt"/>
421
- <line num="186" count="29" type="stmt"/>
422
- <line num="195" count="22" type="stmt"/>
423
- <line num="196" count="22" type="stmt"/>
424
- <line num="197" count="22" type="stmt"/>
425
- <line num="198" count="22" type="stmt"/>
426
- <line num="199" count="22" type="stmt"/>
427
- <line num="200" count="203" type="stmt"/>
428
- <line num="203" count="203" type="cond" truecount="2" falsecount="0"/>
429
- <line num="204" count="6" type="stmt"/>
430
- <line num="205" count="6" type="stmt"/>
431
- <line num="209" count="197" type="stmt"/>
432
- <line num="213" count="22" type="stmt"/>
433
- <line num="222" count="6" type="stmt"/>
360
+ <line num="33" count="201600" type="stmt"/>
361
+ <line num="43" count="14" type="cond" truecount="1" falsecount="1"/>
362
+ <line num="46" count="14" type="stmt"/>
363
+ <line num="47" count="14" type="stmt"/>
364
+ <line num="48" count="14" type="stmt"/>
365
+ <line num="49" count="14" type="stmt"/>
366
+ <line num="50" count="14" type="stmt"/>
367
+ <line num="51" count="14" type="stmt"/>
368
+ <line num="52" count="14" type="stmt"/>
369
+ <line num="53" count="14" type="stmt"/>
370
+ <line num="56" count="14" type="stmt"/>
371
+ <line num="57" count="14" type="stmt"/>
372
+ <line num="58" count="14" type="stmt"/>
373
+ <line num="59" count="14" type="stmt"/>
374
+ <line num="62" count="14" type="stmt"/>
375
+ <line num="63" count="14" type="stmt"/>
376
+ <line num="64" count="14" type="stmt"/>
377
+ <line num="67" count="14" type="stmt"/>
378
+ <line num="68" count="350" type="stmt"/>
379
+ <line num="71" count="350" type="stmt"/>
380
+ <line num="72" count="5600" type="stmt"/>
381
+ <line num="75" count="350" type="stmt"/>
382
+ <line num="76" count="16800" type="stmt"/>
383
+ <line num="77" count="16800" type="stmt"/>
384
+ <line num="78" count="16800" type="stmt"/>
385
+ <line num="82" count="350" type="stmt"/>
386
+ <line num="83" count="350" type="stmt"/>
387
+ <line num="84" count="350" type="stmt"/>
388
+ <line num="85" count="350" type="stmt"/>
389
+ <line num="86" count="350" type="stmt"/>
390
+ <line num="87" count="350" type="stmt"/>
391
+ <line num="88" count="350" type="stmt"/>
392
+ <line num="89" count="350" type="stmt"/>
393
+ <line num="92" count="350" type="stmt"/>
394
+ <line num="93" count="22400" type="stmt"/>
395
+ <line num="94" count="22400" type="stmt"/>
396
+ <line num="95" count="22400" type="stmt"/>
397
+ <line num="96" count="22400" type="stmt"/>
398
+ <line num="97" count="22400" type="stmt"/>
399
+ <line num="98" count="22400" type="stmt"/>
400
+ <line num="100" count="22400" type="stmt"/>
401
+ <line num="101" count="22400" type="stmt"/>
402
+ <line num="102" count="22400" type="stmt"/>
403
+ <line num="103" count="22400" type="stmt"/>
404
+ <line num="104" count="22400" type="stmt"/>
405
+ <line num="105" count="22400" type="stmt"/>
406
+ <line num="106" count="22400" type="stmt"/>
407
+ <line num="107" count="22400" type="stmt"/>
408
+ <line num="111" count="350" type="stmt"/>
409
+ <line num="112" count="350" type="stmt"/>
410
+ <line num="113" count="350" type="stmt"/>
411
+ <line num="114" count="350" type="stmt"/>
412
+ <line num="115" count="350" type="stmt"/>
413
+ <line num="116" count="350" type="stmt"/>
414
+ <line num="117" count="350" type="stmt"/>
415
+ <line num="118" count="350" type="stmt"/>
416
+ <line num="122" count="14" type="stmt"/>
417
+ <line num="123" count="14" type="stmt"/>
418
+ <line num="124" count="14" type="stmt"/>
419
+ <line num="125" count="14" type="stmt"/>
420
+ <line num="126" count="14" type="stmt"/>
421
+ <line num="127" count="14" type="stmt"/>
422
+ <line num="128" count="14" type="stmt"/>
423
+ <line num="129" count="14" type="stmt"/>
424
+ <line num="130" count="14" type="stmt"/>
425
+ <line num="131" count="14" type="stmt"/>
426
+ <line num="133" count="14" type="cond" truecount="1" falsecount="1"/>
427
+ <line num="140" count="1" type="stmt"/>
428
+ <line num="142" count="1" type="stmt"/>
429
+ <line num="172" count="0" type="stmt"/>
430
+ <line num="182" count="0" type="cond" truecount="0" falsecount="2"/>
431
+ <line num="185" count="0" type="stmt"/>
432
+ <line num="186" count="0" type="stmt"/>
433
+ <line num="187" count="0" type="stmt"/>
434
+ <line num="188" count="0" type="stmt"/>
435
+ <line num="189" count="0" type="stmt"/>
436
+ <line num="190" count="0" type="stmt"/>
437
+ <line num="191" count="0" type="stmt"/>
438
+ <line num="192" count="0" type="stmt"/>
439
+ <line num="194" count="0" type="stmt"/>
440
+ <line num="195" count="0" type="stmt"/>
441
+ <line num="196" count="0" type="stmt"/>
442
+ <line num="197" count="0" type="stmt"/>
443
+ <line num="199" count="0" type="stmt"/>
444
+ <line num="200" count="0" type="stmt"/>
445
+ <line num="202" count="0" type="stmt"/>
446
+ <line num="203" count="0" type="stmt"/>
447
+ <line num="205" count="0" type="stmt"/>
448
+ <line num="206" count="0" type="stmt"/>
449
+ <line num="209" count="0" type="stmt"/>
450
+ <line num="210" count="0" type="stmt"/>
451
+ <line num="211" count="0" type="stmt"/>
452
+ <line num="212" count="0" type="stmt"/>
453
+ <line num="215" count="0" type="stmt"/>
454
+ <line num="216" count="0" type="stmt"/>
455
+ <line num="217" count="0" type="stmt"/>
456
+ <line num="218" count="0" type="stmt"/>
457
+ <line num="219" count="0" type="stmt"/>
458
+ <line num="220" count="0" type="stmt"/>
459
+ <line num="221" count="0" type="stmt"/>
460
+ <line num="222" count="0" type="stmt"/>
434
461
  <line num="224" count="0" type="stmt"/>
435
462
  <line num="225" count="0" type="stmt"/>
463
+ <line num="226" count="0" type="stmt"/>
436
464
  <line num="227" count="0" type="stmt"/>
437
465
  <line num="228" count="0" type="stmt"/>
438
- <line num="230" count="0" type="cond" truecount="0" falsecount="2"/>
439
- <line num="231" count="0" type="stmt"/>
466
+ <line num="229" count="0" type="stmt"/>
467
+ <line num="230" count="0" type="stmt"/>
440
468
  <line num="232" count="0" type="stmt"/>
441
- <line num="233" count="0" type="cond" truecount="0" falsecount="4"/>
469
+ <line num="233" count="0" type="stmt"/>
442
470
  <line num="234" count="0" type="stmt"/>
443
471
  <line num="235" count="0" type="stmt"/>
472
+ <line num="236" count="0" type="stmt"/>
444
473
  <line num="237" count="0" type="stmt"/>
474
+ <line num="238" count="0" type="stmt"/>
475
+ <line num="239" count="0" type="stmt"/>
445
476
  <line num="242" count="0" type="stmt"/>
477
+ <line num="243" count="0" type="stmt"/>
478
+ <line num="244" count="0" type="stmt"/>
479
+ <line num="245" count="0" type="stmt"/>
446
480
  <line num="246" count="0" type="stmt"/>
481
+ <line num="247" count="0" type="stmt"/>
482
+ <line num="248" count="0" type="stmt"/>
483
+ <line num="249" count="0" type="stmt"/>
484
+ <line num="252" count="0" type="stmt"/>
485
+ <line num="253" count="0" type="stmt"/>
486
+ <line num="254" count="0" type="stmt"/>
487
+ <line num="255" count="0" type="stmt"/>
447
488
  <line num="256" count="0" type="stmt"/>
448
489
  <line num="257" count="0" type="stmt"/>
449
490
  <line num="258" count="0" type="stmt"/>
491
+ <line num="259" count="0" type="stmt"/>
492
+ <line num="260" count="0" type="stmt"/>
450
493
  <line num="261" count="0" type="stmt"/>
451
- <line num="270" count="0" type="stmt"/>
452
- <line num="271" count="0" type="stmt"/>
453
- <line num="272" count="0" type="stmt"/>
454
- <line num="273" count="0" type="stmt"/>
455
- <line num="274" count="0" type="stmt"/>
456
- <line num="276" count="0" type="stmt"/>
457
- <line num="286" count="11" type="cond" truecount="0" falsecount="1"/>
458
- <line num="287" count="11" type="stmt"/>
459
- <line num="288" count="352" type="stmt"/>
460
- <line num="289" count="11" type="stmt"/>
461
- <line num="297" count="1344" type="stmt"/>
462
- <line num="308" count="22693" type="stmt"/>
463
- <line num="319" count="33000" type="stmt"/>
464
- <line num="329" count="10" type="stmt"/>
465
- <line num="339" count="10" type="stmt"/>
466
- <line num="340" count="80" type="stmt"/>
467
- <line num="341" count="10" type="stmt"/>
494
+ <line num="263" count="0" type="cond" truecount="0" falsecount="2"/>
495
+ </file>
496
+ <file name="shake.ts" path="/home/neurosell/Repos/quarkdash/src/shake.ts">
497
+ <metrics statements="66" coveredstatements="64" conditionals="9" coveredconditionals="8" methods="5" coveredmethods="4"/>
498
+ <line num="13" count="1" type="stmt"/>
499
+ <line num="15" count="1" type="stmt"/>
500
+ <line num="16" count="1" type="stmt"/>
501
+ <line num="17" count="1" type="stmt"/>
502
+ <line num="21" count="1" type="stmt"/>
503
+ <line num="37" count="35" type="stmt"/>
504
+ <line num="47" count="0" type="stmt"/>
505
+ <line num="58" count="35" type="stmt"/>
506
+ <line num="60" count="35" type="stmt"/>
507
+ <line num="61" count="35" type="stmt"/>
508
+ <line num="62" count="35" type="stmt"/>
509
+ <line num="63" count="999" type="stmt"/>
510
+ <line num="64" count="999" type="stmt"/>
511
+ <line num="65" count="132994" type="stmt"/>
512
+ <line num="66" count="132994" type="stmt"/>
513
+ <line num="67" count="132994" type="stmt"/>
514
+ <line num="68" count="132994" type="stmt"/>
515
+ <line num="69" count="132994" type="stmt"/>
516
+ <line num="70" count="132994" type="stmt"/>
517
+ <line num="72" count="999" type="stmt"/>
518
+ <line num="73" count="999" type="cond" truecount="3" falsecount="0"/>
519
+ <line num="75" count="999" type="cond" truecount="1" falsecount="0"/>
520
+ <line num="76" count="35" type="stmt"/>
521
+ <line num="77" count="35" type="stmt"/>
522
+ <line num="78" count="35" type="stmt"/>
523
+ <line num="79" count="35" type="stmt"/>
524
+ <line num="80" count="35" type="stmt"/>
525
+ <line num="82" count="35" type="stmt"/>
526
+ <line num="83" count="35" type="stmt"/>
527
+ <line num="84" count="35" type="stmt"/>
528
+ <line num="85" count="35" type="stmt"/>
529
+ <line num="87" count="999" type="stmt"/>
530
+ <line num="92" count="35" type="stmt"/>
531
+ <line num="93" count="35" type="stmt"/>
532
+ <line num="94" count="35" type="stmt"/>
533
+ <line num="95" count="35" type="cond" truecount="2" falsecount="0"/>
534
+ <line num="96" count="196" type="stmt"/>
535
+ <line num="97" count="196" type="cond" truecount="2" falsecount="0"/>
536
+ <line num="98" count="1568" type="stmt"/>
537
+ <line num="99" count="1568" type="stmt"/>
538
+ <line num="102" count="35" type="cond" truecount="0" falsecount="1"/>
539
+ <line num="103" count="0" type="stmt"/>
540
+ <line num="106" count="35" type="stmt"/>
541
+ <line num="115" count="999" type="stmt"/>
542
+ <line num="117" count="23976" type="stmt"/>
543
+ <line num="118" count="23976" type="stmt"/>
544
+ <line num="119" count="119880" type="stmt"/>
545
+ <line num="121" count="23976" type="stmt"/>
546
+ <line num="122" count="23976" type="stmt"/>
547
+ <line num="123" count="119880" type="stmt"/>
548
+ <line num="125" count="23976" type="stmt"/>
549
+ <line num="126" count="119880" type="stmt"/>
550
+ <line num="127" count="599400" type="stmt"/>
551
+ <line num="132" count="23976" type="stmt"/>
552
+ <line num="133" count="23976" type="stmt"/>
553
+ <line num="134" count="575424" type="stmt"/>
554
+ <line num="135" count="575424" type="stmt"/>
555
+ <line num="136" count="575424" type="stmt"/>
556
+ <line num="137" count="575424" type="stmt"/>
557
+ <line num="141" count="23976" type="stmt"/>
558
+ <line num="142" count="119880" type="stmt"/>
559
+ <line num="143" count="119880" type="stmt"/>
560
+ <line num="144" count="599400" type="stmt"/>
561
+ <line num="149" count="23976" type="stmt"/>
562
+ <line num="160" count="695304" type="stmt"/>
563
+ <line num="161" count="695304" type="stmt"/>
564
+ </file>
565
+ <file name="utils.ts" path="/home/neurosell/Repos/quarkdash/src/utils.ts">
566
+ <metrics statements="83" coveredstatements="48" conditionals="25" coveredconditionals="7" methods="19" coveredmethods="16"/>
567
+ <line num="10" count="1" type="stmt"/>
568
+ <line num="11" count="1" type="stmt"/>
569
+ <line num="16" count="1" type="stmt"/>
570
+ <line num="18" count="1" type="stmt"/>
571
+ <line num="27" count="35" type="stmt"/>
572
+ <line num="37" count="0" type="stmt"/>
573
+ <line num="46" count="212" type="stmt"/>
574
+ <line num="47" count="212" type="stmt"/>
575
+ <line num="48" count="94" type="stmt"/>
576
+ <line num="49" count="94" type="stmt"/>
577
+ <line num="50" count="94" type="stmt"/>
578
+ <line num="51" count="212" type="stmt"/>
579
+ <line num="52" count="212" type="stmt"/>
580
+ <line num="54" count="94" type="stmt"/>
581
+ <line num="64" count="22" type="stmt"/>
582
+ <line num="67" count="22" type="cond" truecount="1" falsecount="2"/>
583
+ <line num="68" count="0" type="cond" truecount="0" falsecount="1"/>
584
+ <line num="69" count="0" type="cond" truecount="0" falsecount="2"/>
585
+ <line num="70" count="0" type="stmt"/>
586
+ <line num="72" count="0" type="stmt"/>
587
+ <line num="76" count="0" type="stmt"/>
588
+ <line num="80" count="22" type="cond" truecount="1" falsecount="0"/>
589
+ <line num="81" count="22" type="cond" truecount="0" falsecount="1"/>
590
+ <line num="82" count="0" type="stmt"/>
591
+ <line num="85" count="22" type="stmt"/>
592
+ <line num="89" count="0" type="cond" truecount="0" falsecount="3"/>
593
+ <line num="90" count="0" type="stmt"/>
594
+ <line num="93" count="0" type="stmt"/>
595
+ <line num="103" count="225" type="stmt"/>
596
+ <line num="113" count="22" type="stmt"/>
597
+ <line num="114" count="22" type="cond" truecount="0" falsecount="1"/>
598
+ <line num="115" count="0" type="stmt"/>
599
+ <line num="118" count="22" type="stmt"/>
600
+ <line num="119" count="203" type="cond" truecount="3" falsecount="1"/>
601
+ <line num="120" count="0" type="stmt"/>
602
+ <line num="124" count="22" type="stmt"/>
603
+ <line num="133" count="29" type="stmt"/>
604
+ <line num="142" count="22" type="stmt"/>
605
+ <line num="143" count="22" type="stmt"/>
606
+ <line num="144" count="22" type="stmt"/>
607
+ <line num="145" count="22" type="stmt"/>
608
+ <line num="146" count="22" type="stmt"/>
609
+ <line num="147" count="203" type="stmt"/>
610
+ <line num="150" count="203" type="cond" truecount="2" falsecount="0"/>
611
+ <line num="151" count="6" type="stmt"/>
612
+ <line num="152" count="6" type="stmt"/>
613
+ <line num="156" count="197" type="stmt"/>
614
+ <line num="160" count="22" type="stmt"/>
615
+ <line num="169" count="8" type="stmt"/>
616
+ <line num="171" count="0" type="stmt"/>
617
+ <line num="172" count="0" type="stmt"/>
618
+ <line num="174" count="0" type="stmt"/>
619
+ <line num="175" count="0" type="stmt"/>
620
+ <line num="177" count="0" type="cond" truecount="0" falsecount="2"/>
621
+ <line num="178" count="0" type="stmt"/>
622
+ <line num="179" count="0" type="stmt"/>
623
+ <line num="180" count="0" type="cond" truecount="0" falsecount="4"/>
624
+ <line num="181" count="0" type="stmt"/>
625
+ <line num="182" count="0" type="stmt"/>
626
+ <line num="184" count="0" type="stmt"/>
627
+ <line num="189" count="0" type="stmt"/>
628
+ <line num="193" count="0" type="stmt"/>
629
+ <line num="203" count="0" type="stmt"/>
630
+ <line num="204" count="0" type="stmt"/>
631
+ <line num="205" count="0" type="stmt"/>
632
+ <line num="208" count="0" type="stmt"/>
633
+ <line num="217" count="0" type="stmt"/>
634
+ <line num="218" count="0" type="stmt"/>
635
+ <line num="219" count="0" type="stmt"/>
636
+ <line num="220" count="0" type="stmt"/>
637
+ <line num="221" count="0" type="stmt"/>
638
+ <line num="223" count="0" type="stmt"/>
639
+ <line num="233" count="11" type="cond" truecount="0" falsecount="1"/>
640
+ <line num="234" count="11" type="stmt"/>
641
+ <line num="235" count="352" type="stmt"/>
642
+ <line num="236" count="11" type="stmt"/>
643
+ <line num="244" count="1344" type="stmt"/>
644
+ <line num="255" count="22693" type="stmt"/>
645
+ <line num="266" count="33000" type="stmt"/>
646
+ <line num="276" count="10" type="stmt"/>
647
+ <line num="286" count="10" type="stmt"/>
648
+ <line num="287" count="80" type="stmt"/>
649
+ <line num="288" count="10" type="stmt"/>
468
650
  </file>
469
651
  </project>
470
652
  </coverage>