-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuttudf.csv
We can't make this file beautiful and searchable because it's too large.
1557 lines (1557 loc) · 586 KB
/
uttudf.csv
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
title,artist,album,year,genre,label,file_path,tempo,timbre
Modul8 (ItaloJohnson Remix),DJ Haus,,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus - Modul8 (ItaloJohnson Remix).mp3,129.19921875,"-199.38026,88.61918,34.8789,26.653543,11.230676,23.920038,4.872302,12.29483,4.630765,7.6691976,4.000138,6.286042,3.3407152,3.5829272,2.7088993,3.8398848,2.7545664,3.8295171,1.495677,3.8402607"
Shadow Man,Neil Landstrumm,,2019,,Unknown to the Unknown,/mnt/d/UTTU/Neil Landstrumm - Shadow Man.mp3,129.19921875,"-114.02061,81.57262,14.780435,17.86424,15.399664,19.730774,10.922003,22.101715,10.25142,9.544202,2.9448013,10.290255,7.3585286,11.85481,5.9106092,1.9607052,-4.9882913,-8.432377,-10.327429,-3.488282"
Fluid Funk,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/'/Elisa Bee - Fluid Funk - 01 Fluid Funk.mp3,112.34714673913044,"-129.48328,63.040688,-4.4237905,43.902008,22.440336,36.15236,2.7206945,4.227622,4.4949155,14.793113,6.248918,4.703199,-2.9525588,13.686717,6.8587,0.896006,-1.6379439,0.73428607,3.6538086,2.758317"
Yes Yes,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/'/Elisa Bee - Fluid Funk - 02 Yes Yes.mp3,112.34714673913044,"-58.096172,53.636196,-8.037225,16.690744,6.209156,19.309181,2.583596,21.880913,4.3365216,10.590914,-1.0112262,5.722304,-2.4875255,5.6990924,2.4201238,4.4955535,-0.79632306,3.9120345,1.3318146,2.0554104"
Pins and Needles,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/'/Elisa Bee - Fluid Funk - 03 Pins and Needles.mp3,143.5546875,"-77.44738,51.692883,2.159064,27.919512,6.9823833,25.925426,9.133098,16.385906,1.6527804,13.226633,4.271673,6.8096514,1.1251986,1.9805574,-2.8456008,3.8175652,0.80966485,5.882615,1.4008915,2.263969"
Forever Seeking,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/'/Elisa Bee - Fluid Funk - 04 Forever Seeking.mp3,69.83741554054055,"-90.65801,109.44486,5.977253,24.48401,2.7023897,15.245692,5.371728,10.288377,0.72152585,5.3298254,0.21672063,3.4716659,-0.85656065,1.6610073,-2.167205,1.058015,0.03369291,2.4007175,-3.0615823,-1.5936239"
Warm Fuzz,3STRANGE,The New World,2020,,Unknown to the Unknown,/mnt/d/UTTU/3STRANGE/3STRANGE - The New World - 01 Warm Fuzz.mp3,92.28515625,"-134.38597,126.08912,10.471413,17.86929,4.5215964,13.765,1.3947555,1.2972776,0.42185855,5.536709,-0.6755157,2.4663508,-2.7566428,1.1867255,-4.3982368,-1.0943391,-2.8485794,1.6638416,-2.114007,-0.34727404"
The New World,3STRANGE,The New World,2020,,Unknown to the Unknown,/mnt/d/UTTU/3STRANGE/3STRANGE - The New World - 02 The New World.mp3,172.265625,"-155.85399,168.07483,-12.205691,21.814245,2.4667134,6.7616906,-6.425164,-0.80835277,-5.5128036,-3.583037,-2.4946537,-1.8056642,-3.0608969,-8.083006,-8.380206,-9.427499,-9.167492,-4.243405,-4.7966437,-3.0477238"
Pale Blue Dot,3STRANGE,The New World,2020,,Unknown to the Unknown,/mnt/d/UTTU/3STRANGE/3STRANGE - The New World - 03 Pale Blue Dot.mp3,123.046875,"-72.34656,117.09261,-60.11216,42.919075,-23.774967,5.488897,-10.286627,1.8645236,-11.217464,-2.4506202,-11.527761,-7.743653,-11.1323185,-5.1951327,-5.806877,-2.4322443,-6.6245656,-6.178954,-9.934464,-5.2654405"
Lost,3STRANGE,The New World,2020,,Unknown to the Unknown,/mnt/d/UTTU/3STRANGE/3STRANGE - The New World - 04 Lost.mp3,161.4990234375,"-275.59268,179.85838,-10.269643,10.1854515,-6.653932,-12.546992,-3.842698,-9.312254,-0.5048963,-5.4655294,-11.153566,-5.5731263,-4.8241987,0.047821477,-0.8418461,-1.5112792,-1.7794002,-3.1876476,-1.3053924,-1.9980714"
Gold Diggin',"3STRANGE, Alan Fitzpatrick",Cyclone Jazz EP,2020,,Unknown to the Unknown,"/mnt/d/UTTU/3STRANGE, Alan Fitzpatrick/3STRANGE, Alan Fitzpatrick - Cyclone Jazz EP - 01 Gold Diggin'.mp3",103.359375,"-25.893187,75.62746,-12.4944515,25.450714,8.001978,21.690773,0.6757876,6.9923,0.5927598,1.0410314,2.7743688,-0.52193934,-0.7484022,-1.0117433,-1.593507,0.46896577,-6.204555,1.6768064,-8.178342,-1.5015386"
Fly On The Wall,"3STRANGE, Alan Fitzpatrick",Cyclone Jazz EP,2020,,Unknown to the Unknown,"/mnt/d/UTTU/3STRANGE, Alan Fitzpatrick/3STRANGE, Alan Fitzpatrick - Cyclone Jazz EP - 02 Fly On The Wall.mp3",73.828125,"-85.14944,83.65128,-23.568785,15.195534,-2.9197016,9.4366255,-3.3961241,2.9677465,-0.58792716,-2.4109454,-6.2803187,-1.2144372,-6.781067,-2.9921033,-4.681549,-0.45717722,-1.9190166,2.498863,-1.7826682,1.1337003"
Sound City,"3STRANGE, Alan Fitzpatrick",Cyclone Jazz EP,2020,,Unknown to the Unknown,"/mnt/d/UTTU/3STRANGE, Alan Fitzpatrick/3STRANGE, Alan Fitzpatrick - Cyclone Jazz EP - 03 Sound City.mp3",161.4990234375,"-104.33979,68.5713,21.827744,20.78441,2.469141,11.102341,-0.43046767,-1.1401715,-4.9333487,-0.054464616,-6.244217,-2.9734404,-9.292468,-5.2460337,-8.144492,-1.5899197,-6.026437,1.4553053,1.58225,-1.669638"
Cyclone Jazz,"3STRANGE, Alan Fitzpatrick",Cyclone Jazz EP,2020,,Unknown to the Unknown,"/mnt/d/UTTU/3STRANGE, Alan Fitzpatrick/3STRANGE, Alan Fitzpatrick - Cyclone Jazz EP - 04 Cyclone Jazz.mp3",117.45383522727273,"-262.48068,118.724556,-8.462334,22.401396,18.094925,12.942465,8.172275,2.7121031,5.2659354,1.5490826,2.2728724,5.7551904,1.6696801,0.8949421,-1.7121564,-0.7962882,-0.5307974,1.2997129,0.22398153,-3.066615"
Ode To Eno,"3STRANGE, Alan Fitzpatrick",Cyclone Jazz EP,2020,,Unknown to the Unknown,"/mnt/d/UTTU/3STRANGE, Alan Fitzpatrick/3STRANGE, Alan Fitzpatrick - Cyclone Jazz EP - 05 Ode To Eno.mp3",129.19921875,"-289.446,139.58543,-20.537504,2.8611693,-11.742907,-16.638796,-4.6639037,-9.302511,-11.5359335,-3.9079933,-5.0789847,-6.143823,1.0098629,14.750722,19.248116,18.7876,15.211685,6.680053,-4.498558,-7.5282907"
Make U Understand,5kinandBone5,Make U Understand / Reset,2012-02-06,,Unknown to the Unknown,/mnt/d/UTTU/5kinAndBone5/5kinAndBone5 - Make U Understand - 01 Make U Understand.mp3,89.10290948275862,"-177.6755,95.94564,15.635957,9.011345,1.0283483,9.163767,-0.7192898,0.42605606,-9.480864,-6.6723466,-10.423143,-5.285195,-4.818497,-1.2610447,-4.448613,0.63222,-1.6832865,1.738202,0.78636116,4.969556"
Reset,5kinandBone5,Make U Understand / Reset,2012-02-06,,Unknown to the Unknown,/mnt/d/UTTU/5kinAndBone5/5kinAndBone5 - Make U Understand - 02 Reset.mp3,86.1328125,"-187.22461,96.97226,6.9289865,8.18768,1.56467,10.030065,4.1329994,9.029302,3.7819724,6.4174466,1.8593138,2.4763935,1.2278421,4.648872,2.714205,2.429523,-0.08079534,1.1479132,-0.21787813,2.6789749"
Phoenica,9th House,9th House - Phoenica + Loods Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - 9th House - Phoenica + Loods Remix - 01 Phoenica.mp3,123.046875,"-84.93502,58.47037,14.674264,23.147816,0.07046747,11.495614,-2.5786831,6.329691,-2.158557,3.2223756,-2.3697515,4.061891,1.2807474,7.8527393,1.9234846,2.3420289,-3.9347765,1.8987632,-2.307657,0.5913174"
Phoenica (Loods Remix),9th House,9th House - Phoenica + Loods Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - 9th House - Phoenica + Loods Remix - 02 Phoenica (Loods Remix).mp3,129.19921875,"-38.805588,59.886757,15.697188,7.751854,-3.876255,8.748095,-5.011504,9.218468,-0.45686388,7.0989237,-2.0830219,4.291303,3.936764,6.254586,4.1018553,5.2754483,-0.06548783,6.052075,-2.7629495,2.091722"
Orion,9th House,9th House - Phoenica + Loods Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - 9th House - Phoenica + Loods Remix - 03 Orion.mp3,123.046875,"-70.67294,90.5771,17.67645,23.673027,-4.129348,8.030358,-6.8897896,4.7896924,-6.4704266,4.1243405,-4.7381215,5.846005,-2.5578358,1.4545374,-4.086857,0.965814,-5.1200624,0.52103996,-0.070771515,5.1041317"
Planetary (Feat. Baltra),9th House,Planetary EP (Feat. Baltra & Fear-E),2019,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - Planetary EP (Feat. Baltra & Fear-E) - 01 Planetary (Feat. Baltra).mp3,123.046875,"-102.68193,75.1553,30.689823,25.97157,8.282462,20.724676,1.223209,9.417011,-1.3603595,7.678386,-1.6154084,4.7689643,-2.1158745,0.7317641,-4.2593374,3.035928,-2.004731,3.7366648,1.5185077,4.1808486"
Angels,9th House,Planetary EP (Feat. Baltra & Fear-E),2019,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - Planetary EP (Feat. Baltra & Fear-E) - 02 Angels.mp3,123.046875,"-131.90042,78.66718,45.924156,37.729343,16.86881,25.30658,3.7816505,13.076317,0.31127313,9.543626,0.8476153,4.30782,-2.001473,1.0281867,-3.644779,3.2722878,-2.534122,0.10218015,-0.831498,4.3711085"
Plexus,9th House,Planetary EP (Feat. Baltra & Fear-E),2019,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - Planetary EP (Feat. Baltra & Fear-E) - 03 Plexus.mp3,123.046875,"-133.05212,36.258427,73.32926,43.25843,11.664301,20.520527,-4.93252,15.963196,-6.862946,10.499039,-3.2582362,4.9907947,-3.5370276,1.8400898,-1.6366621,2.811833,-3.286407,0.34825382,-1.4212978,0.20501041"
Plexus (Fear-E's Right in the Solar Plexus Mix),9th House,Planetary EP (Feat. Baltra & Fear-E),2019,,Unknown to the Unknown,/mnt/d/UTTU/9th House/9th House - Planetary EP (Feat. Baltra & Fear-E) - 04 Plexus (Fear-E's Right in the Solar Plexus Mix).mp3,129.19921875,"-55.27052,45.93496,28.443865,15.786768,5.543235,18.622091,3.785599,3.440082,-4.2693095,10.2272625,8.04771,13.913521,2.5291932,5.0821114,6.611301,13.429671,-2.5443814,0.107957065,2.5058815,5.4721665"
Phoenica,9th House,9th House - Phoenica + Loods Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/9th House - 9th House - Phoenica + Loods Remix/9th House - 9th House - Phoenica + Loods Remix - 01 Phoenica.mp3,123.046875,"-84.93502,58.47037,14.674264,23.147816,0.07046747,11.495614,-2.5786831,6.329691,-2.158557,3.2223756,-2.3697515,4.061891,1.2807474,7.8527393,1.9234846,2.3420289,-3.9347765,1.8987632,-2.307657,0.5913174"
Phoenica (Loods Remix),9th House,9th House - Phoenica + Loods Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/9th House - 9th House - Phoenica + Loods Remix/9th House - 9th House - Phoenica + Loods Remix - 02 Phoenica (Loods Remix).mp3,129.19921875,"-38.805588,59.886757,15.697188,7.751854,-3.876255,8.748095,-5.011504,9.218468,-0.45686388,7.0989237,-2.0830219,4.291303,3.936764,6.254586,4.1018553,5.2754483,-0.06548783,6.052075,-2.7629495,2.091722"
Orion,9th House,9th House - Phoenica + Loods Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/9th House - 9th House - Phoenica + Loods Remix/9th House - 9th House - Phoenica + Loods Remix - 03 Orion.mp3,123.046875,"-70.67294,90.5771,17.67645,23.673027,-4.129348,8.030358,-6.8897896,4.7896924,-6.4704266,4.1243405,-4.7381215,5.846005,-2.5578358,1.4545374,-4.086857,0.965814,-5.1200624,0.52103996,-0.070771515,5.1041317"
Changing Contrast,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford/Aaron Rutherford - Changing Contrast - 01 Changing Contrast.mp3,129.19921875,"-112.10286,64.90616,31.66615,29.58975,14.123624,4.251611,-0.8437997,2.6479788,-5.976158,-4.2449474,-8.981638,-3.8335595,-2.2173326,4.464488,2.493469,1.0847416,-3.8572495,-1.9897969,-5.838254,-2.627998"
Gradient,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford/Aaron Rutherford - Changing Contrast - 02 Gradient.mp3,123.046875,"-120.48603,44.63129,13.051826,12.142477,10.466699,7.84697,0.95960927,7.1309757,4.1220603,4.783948,-2.4680636,2.3389502,-0.107164085,6.5854607,4.629474,7.899934,1.8939114,4.0884895,3.5339406,-0.24066794"
Vision,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford/Aaron Rutherford - Changing Contrast - 03 Vision.mp3,123.046875,"-124.40594,80.889946,60.05625,20.626392,17.307045,12.183325,2.138118,7.5057764,-4.127397,-0.3465541,-6.791148,-2.9627583,-2.0682979,1.0479807,-2.1872141,-1.2656195,-5.3734794,-1.7174093,-1.7913325,1.5995154"
Retract,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford/Aaron Rutherford - Changing Contrast - 04 Retract.mp3,129.19921875,"-79.715706,63.57736,-0.30918828,21.48608,15.336996,11.602477,2.5268693,6.754712,-1.5504974,4.9365563,-1.1884009,1.8789364,-0.9892867,2.6213903,2.3411572,7.385465,-0.9527778,1.6793094,-0.99820197,1.0853578"
Changing Contrast,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford - Changing Contrast/Aaron Rutherford - Changing Contrast - 01 Changing Contrast.mp3,129.19921875,"-112.10286,64.90616,31.66615,29.58975,14.123624,4.251611,-0.8437997,2.6479788,-5.976158,-4.2449474,-8.981638,-3.8335595,-2.2173326,4.464488,2.493469,1.0847416,-3.8572495,-1.9897969,-5.838254,-2.627998"
Gradient,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford - Changing Contrast/Aaron Rutherford - Changing Contrast - 02 Gradient.mp3,123.046875,"-120.48603,44.63129,13.051826,12.142477,10.466699,7.84697,0.95960927,7.1309757,4.1220603,4.783948,-2.4680636,2.3389502,-0.107164085,6.5854607,4.629474,7.899934,1.8939114,4.0884895,3.5339406,-0.24066794"
Vision,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford - Changing Contrast/Aaron Rutherford - Changing Contrast - 03 Vision.mp3,123.046875,"-124.40594,80.889946,60.05625,20.626392,17.307045,12.183325,2.138118,7.5057764,-4.127397,-0.3465541,-6.791148,-2.9627583,-2.0682979,1.0479807,-2.1872141,-1.2656195,-5.3734794,-1.7174093,-1.7913325,1.5995154"
Retract,Aaron Rutherford,Changing Contrast,2022,,Unknown to the Unknown,/mnt/d/UTTU/Aaron Rutherford - Changing Contrast/Aaron Rutherford - Changing Contrast - 04 Retract.mp3,129.19921875,"-79.715706,63.57736,-0.30918828,21.48608,15.336996,11.602477,2.5268693,6.754712,-1.5504974,4.9365563,-1.1884009,1.8789364,-0.9892867,2.6213903,2.3411572,7.385465,-0.9527778,1.6793094,-0.99820197,1.0853578"
Rush Hour,ABSOLUTE.,Unarmed and Extremely Dangerous EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/ABSOLUTE/ABSOLUTE. - Unarmed and Extremely Dangerous EP - 01 Rush Hour.mp3,143.5546875,"-100.65859,87.04488,16.83934,26.458189,-1.5641452,12.136025,1.8794657,5.019795,-1.0506575,8.774546,0.18658938,4.0156245,0.68385047,4.7173724,1.2004242,4.9676003,-0.7040987,2.6771364,0.7613454,4.665343"
Unarmed and Extremely Dangerous,ABSOLUTE.,Unarmed and Extremely Dangerous EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/ABSOLUTE/ABSOLUTE. - Unarmed and Extremely Dangerous EP - 02 Unarmed and Extremely Dangerous.mp3,89.10290948275862,"-78.70973,65.553345,-9.817867,24.996656,7.7245836,21.489634,2.5672479,3.44367,-5.78804,-0.454997,-0.5807943,5.381206,1.319405,3.8004649,0.5551493,3.9912157,-0.07389317,0.34688264,-3.048989,2.6714547"
Papi’s Pumping Piano,ABSOLUTE.,Unarmed and Extremely Dangerous EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/ABSOLUTE/ABSOLUTE. - Unarmed and Extremely Dangerous EP - 03 Papi’s Pumping Piano.mp3,135.99917763157896,"-58.21743,31.832582,13.222678,43.754284,13.8666115,21.470465,3.0305157,8.235239,2.1498003,6.3744597,-5.129365,2.0558593,-2.8325217,0.58954847,2.7931693,8.042857,0.38767534,4.048648,-6.0444655,1.9517003"
Drop Kick,ABSOLUTE.,Unarmed and Extremely Dangerous EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/ABSOLUTE/ABSOLUTE. - Unarmed and Extremely Dangerous EP - 04 Drop Kick.mp3,135.99917763157896,"-147.25026,91.09314,31.777252,28.376791,2.925494,14.837265,6.2318525,5.766742,1.3612913,7.2002125,5.4549093,7.9108152,5.55826,0.9014842,-3.874932,2.447616,-0.35111812,0.8814024,-3.2930899,4.5588493"
D Question,Addison Groove & Bim Sanga Present Bags Inc.,Dance Trax Vol.17,2018,,Unknown to the Unknown,/mnt/d/UTTU/Addison Groove & Bim Sanga Present Bags Inc/Addison Groove & Bim Sanga Present Bags Inc. - Dance Trax Vol.17 - 01 D Question.mp3,129.19921875,"-72.06689,63.13978,3.8602424,21.910812,4.56237,16.686731,6.9626637,14.314883,2.7020717,9.556391,4.623396,6.945063,5.539579,7.0923357,2.5694056,5.376669,2.5987298,6.093682,2.563108,4.272972"
Bashton Valed,Addison Groove & Bim Sanga Present Bags Inc.,Dance Trax Vol.17,2018,,Unknown to the Unknown,/mnt/d/UTTU/Addison Groove & Bim Sanga Present Bags Inc/Addison Groove & Bim Sanga Present Bags Inc. - Dance Trax Vol.17 - 02 Bashton Valed.mp3,83.35433467741936,"-59.690502,83.7646,24.355259,7.3765683,4.7204175,13.42078,5.477965,12.148227,6.5095897,11.315101,6.7885385,8.710932,1.0929564,5.4550176,5.6755743,6.8733664,-0.6881516,3.0206525,0.40547016,0.5782459"
Tanga Toll,Addison Groove & Bim Sanga Present Bags Inc.,Dance Trax Vol.17,2018,,Unknown to the Unknown,/mnt/d/UTTU/Addison Groove & Bim Sanga Present Bags Inc/Addison Groove & Bim Sanga Present Bags Inc. - Dance Trax Vol.17 - 03 Tanga Toll.mp3,129.19921875,"-103.51088,70.901146,15.108615,1.4004668,-1.9991212,4.046666,-3.459756,6.221487,-3.3285995,3.2042942,-2.0198166,1.7922189,-0.186297,-0.2623885,-2.2223866,1.2782738,-3.5774276,-1.7746255,-2.4071221,1.8425679"
Awkward Desire,Alan Fitzpatrick,,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - Awkward Desire.mp3,123.046875,"-120.22114,88.257484,-12.527781,14.9022875,1.0901535,11.008231,-4.56248,0.27311996,-3.062423,4.380524,-0.98722935,4.812656,0.38981247,3.96972,3.5168655,9.102639,2.8015113,3.3975992,1.4145172,3.7065117"
System Addict,Alan Fitzpatrick,System Addict EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - System Addict EP - 01 System Addict.mp3,123.046875,"-118.9949,91.09116,8.389868,17.03998,3.7965841,12.678414,3.7971423,0.36884046,-0.64784735,7.287622,0.31500956,4.1110826,0.55293685,1.1409109,1.5585177,3.4571273,-1.3437341,5.572987,2.8905284,4.1284175"
Hold The Ripper,Alan Fitzpatrick,System Addict EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - System Addict EP - 02 Hold The Ripper.mp3,123.046875,"-89.20649,84.310036,28.974459,27.996586,12.728141,19.321589,-2.4740865,7.3756485,0.33018565,6.5731454,-1.9698783,0.95392364,-1.1966743,2.5859847,1.2478225,4.0015006,-3.2779422,4.0496206,-0.45360833,6.0389605"
In Excess,Alan Fitzpatrick,System Addict EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - System Addict EP - 03 In Excess.mp3,123.046875,"-97.90107,65.29341,5.200229,22.496609,-6.258032,13.082186,1.3771089,11.849723,0.05786392,8.066305,5.415494,8.749509,2.6693754,5.0425787,-0.36717367,3.4087958,-2.3018463,6.009451,2.0954692,-0.2592063"
In Excess (Falcon Black Ops Remix),Alan Fitzpatrick,System Addict EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - System Addict EP - 04 In Excess (Falcon Black Ops Remix).mp3,129.19921875,"-45.966125,70.752075,6.142272,19.032215,2.7434077,15.869928,4.777199,13.43997,3.7540343,8.846201,2.4826946,7.873527,0.18304077,4.6851096,2.637584,4.086848,-1.719169,4.7412066,0.7932771,5.520278"
RAW (Digital Only Exclusive),Alan Fitzpatrick,System Addict EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - System Addict EP - 05 RAW (Digital Only Exclusive).mp3,123.046875,"-155.0691,71.70513,41.107727,11.913658,15.860389,21.148062,2.9647064,11.654644,1.7206537,10.413488,6.174926,9.394532,6.7746916,6.2252145,0.57820123,2.3157191,0.61403185,1.2429389,0.016338201,0.8273982"
The Hole,Alan Fitzpatrick,The Hole EP,2020-03-06,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - The Hole EP - 01 The Hole.mp3,129.19921875,"-112.20715,92.61926,34.564182,14.283795,1.1448902,15.055298,2.2237875,6.61892,-0.37062952,9.661294,4.090311,11.1293745,6.561396,5.8813577,6.6438003,10.252592,-1.2263306,1.5296224,-0.049528945,-0.19390444"
Raid,Alan Fitzpatrick,The Hole EP,2020-03-06,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - The Hole EP - 02 Raid.mp3,129.19921875,"-77.694885,86.78973,19.759394,37.71334,5.1009674,24.516169,5.287443,9.592905,0.4530136,7.3326745,0.6393392,4.049237,-0.15730192,1.1136009,-3.7087195,5.575812,0.2781523,-1.2160418,-5.6391206,-1.5062597"
KD6-3,Alan Fitzpatrick,The Hole EP,2020-03-06,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - The Hole EP - 03 KD6-3.mp3,129.19921875,"-148.15973,95.67104,51.774693,24.1482,18.949417,28.360945,4.257204,16.035723,5.739894,8.1209755,3.5035436,3.6504934,7.378848,4.0093985,4.850896,9.289398,5.415848,11.670052,0.6639727,3.4062736"
Awkward Desire,Alan Fitzpatrick,The Hole EP,2020-03-06,,Unknown to the Unknown,/mnt/d/UTTU/Alan Fitzpatrick/Alan Fitzpatrick - The Hole EP - 04 Awkward Desire.mp3,123.046875,"-120.22114,88.257484,-12.527781,14.9022875,1.0901535,11.008231,-4.56248,0.27311996,-3.062423,4.380524,-0.98722935,4.812656,0.38981247,3.96972,3.5168655,9.102639,2.8015113,3.3975992,1.4145172,3.7065117"
Cybernetik Memory,Alex Jann,Cybernetik Memory,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jann/Alex Jann - Cybernetik Memory - 01 Cybernetik Memory.mp3,143.5546875,"-35.896965,56.718002,26.781181,18.6074,8.092296,14.031027,-2.9331868,16.43727,-3.5977364,12.310528,-3.171754,7.309102,1.8944515,4.920525,1.4329469,5.063547,-0.9587935,4.026542,-3.0468175,5.89906"
CMD CNTR,Alex Jann,Cybernetik Memory,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jann/Alex Jann - Cybernetik Memory - 02 CMD CNTR.mp3,129.19921875,"-119.484314,59.12526,31.408556,14.520381,13.002639,23.020578,2.8291128,18.805714,-0.27393258,17.76287,5.7063794,17.004572,4.9357815,5.7565193,2.6763797,4.3135633,0.9141813,5.5409045,1.7605393,9.21256"
Alex Jann - Cybernetik Memory [Marco Bernardi Electric Bunker Mix],Alex Jann,Cybernetik Memory,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jann/Alex Jann - Cybernetik Memory - 03 Alex Jann - Cybernetik Memory -Marco Bernardi Electric Bunker Mix-.mp3,123.046875,"-87.08871,126.36863,24.155172,31.817442,6.6476803,19.193802,3.5561314,15.784059,4.4196224,0.70839465,2.6245944,7.7339554,5.4685183,5.475975,1.6995817,6.8879647,2.2133482,3.1849236,0.48534366,3.100921"
Klep Klap,Alex Jann,Cybernetik Memory,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jann/Alex Jann - Cybernetik Memory - 04 Klep Klap.mp3,66.25600961538461,"-159.0821,96.583595,47.32152,39.281548,9.618805,16.378546,-1.5726147,8.263297,-5.2773952,6.189769,-2.0447152,0.346601,-1.2951248,2.770054,-0.95377815,1.5421246,-0.6385373,5.428804,0.6379299,1.5359814"
Don't Come Around,Alex Jann,Cybernetik Memory,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jann/Alex Jann - Cybernetik Memory - 05 Don't Come Around.mp3,129.19921875,"-87.69921,66.619865,0.1489233,38.763084,-0.55410564,28.687529,9.019642,18.536535,4.433142,4.819222,-0.6950471,-0.56156,-5.5722537,4.3273187,-2.2842112,6.5181127,6.004514,12.011,2.9548295,-1.6067371"
Inward Energy,Alex Jann,Cybernetik Memory,2020,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jann/Alex Jann - Cybernetik Memory - 06 Inward Energy.mp3,123.046875,"-236.59547,94.74165,62.4953,12.115001,21.57039,19.760828,8.363795,15.733579,4.686997,9.775891,2.873031,3.2686079,1.9140055,3.274398,4.2601933,3.0460792,2.5915132,7.349032,4.8513236,3.994166"
Them Things,Alex Jones,Them Things,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jones/Alex Jones - Them Things - 01 Them Things.mp3,129.19921875,"-110.40537,77.20299,28.501041,21.780535,12.015558,20.440098,0.61664444,7.6081142,-2.2131667,5.244518,-1.3749555,2.7880292,-0.92340016,-0.51532114,1.4332688,0.9083054,-0.22548772,0.9649698,-1.8932407,3.6137383"
Blake Spill,Alex Jones,Them Things,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jones/Alex Jones - Them Things - 02 Blake Spill.mp3,129.19921875,"-121.90016,71.535576,19.01765,26.230976,4.16747,17.467634,3.9670963,9.577113,1.7694098,10.764005,2.6022804,11.705406,6.090315,8.693378,0.6004251,2.4072802,1.3656939,2.936712,-2.3354194,3.7564845"
The Gab (Free Download),Alex Jones,Them Things,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alex Jones/Alex Jones - Them Things - 03 The Gab (Free Download).mp3,123.046875,"-99.724174,41.81665,20.008614,36.908215,7.9879255,21.464123,7.033301,11.558953,0.64921916,7.4245896,-0.54520285,10.056267,1.876141,3.6523998,0.6122429,6.4507675,-0.18551998,3.2409365,0.04428829,4.4339185"
Something Blue,Alex Virgo,Something Blue,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alex Virgo/Alex Virgo - Something Blue - 01 Something Blue.mp3,129.19921875,"-79.96884,64.8941,19.806501,30.179363,11.0409565,13.104984,5.29514,9.456479,3.4018683,8.027134,0.20181634,2.5435183,0.2707436,3.855062,0.34799084,4.092631,-2.0620277,1.0156436,-2.7059526,2.011361"
Midi Talks,Alex Virgo,Something Blue,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alex Virgo/Alex Virgo - Something Blue - 02 Midi Talks.mp3,123.046875,"-57.733555,73.11013,0.89835584,17.756657,5.2912855,12.283664,0.19476601,10.656479,1.0341394,10.912596,1.7691556,5.003254,0.2856617,3.212641,-0.66140294,1.9401531,0.3630866,3.7869978,1.7639415,1.1597618"
Attention,Alias G,Attention EP,2013,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Attention EP - 01 Attention.mp3,129.19921875,"-81.700325,86.21645,13.167622,32.159912,-2.0595903,17.296745,1.8841676,12.149182,5.907965,11.111657,7.045083,7.548561,0.5676539,3.3057017,-1.5447087,2.790483,-0.04068937,1.8639774,-4.402182,-1.701134"
I Can't Get Out The House,Alias G,Attention EP,2013,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Attention EP - 02 I Can't Get Out The House.mp3,129.19921875,"-67.51599,97.14939,22.707863,33.45398,4.1420193,5.5682583,-6.7061515,8.220376,-8.974829,1.6467954,1.5223868,6.048722,-0.91826075,3.9600427,1.4276685,3.9941964,-3.1313815,1.5457156,-1.529074,3.2896557"
3XG Anthem,Alias G,Attention EP,2013,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Attention EP - 03 3XG Anthem.mp3,117.45383522727273,"-73.82981,69.04521,35.9245,36.78325,5.2954555,15.367228,2.9555984,18.044361,-2.5461075,9.979738,2.5871775,9.215447,-0.022245381,4.5205445,3.4094465,5.1918406,-0.70579493,4.490278,1.8814577,7.7294726"
Mystery Dragon,Alias G,Mystery Dragon + SLACKK Remix,2011,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Mystery Dragon + SLACKK Remix - 01 Mystery Dragon.mp3,135.99917763157896,"-12.509358,69.75414,12.356986,20.981655,7.2221766,16.578857,5.0395913,8.143618,1.8093703,6.1655517,-0.5231637,6.5147314,-1.9923712,2.8288643,-1.3754051,2.8039074,-2.8151958,2.1003861,-1.1505089,-0.31291577"
Natural Love,Alias G,Natural Love,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Natural Love - 01 Natural Love.mp3,123.046875,"-136.83876,73.345985,25.415562,14.984779,17.969784,20.556934,7.828565,0.16586645,-4.726427,5.5690928,5.985369,6.8174925,-3.3902636,2.8933089,-0.6359198,13.1769,2.358711,5.83975,-9.673944,10.150104"
Snatch & Grab,Alias G,Natural Love,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Natural Love - 02 Snatch & Grab.mp3,129.19921875,"-82.90507,65.04582,31.847847,29.032799,14.344719,21.220228,8.921093,11.253111,3.7083204,7.6110125,1.0990584,5.649329,0.7299655,5.1142745,0.05931034,5.1189055,-2.6835172,3.1948645,-2.9509156,0.955635"
Big Space Balls,Alias G,Natural Love,2022,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Alias G - Natural Love - 03 Big Space Balls.mp3,129.19921875,"-53.830223,80.20476,9.1374655,23.75597,13.945923,23.633192,8.223389,13.980855,0.25295475,7.702756,2.9375193,6.436139,-1.0095028,4.056059,0.88842875,4.8826766,-1.3478224,1.1404929,-5.6269193,-2.53663"
Mystery Dragon (SLACKK REMIX),Unknown To The Unknown & Alias G,Mystery Dragon + SLACKK Remix,2011,,Unknown to the Unknown,/mnt/d/UTTU/Alias G/Unknown To The Unknown & Alias G - Mystery Dragon + SLACKK Remix - 02 Mystery Dragon (SLACKK REMIX).mp3,129.19921875,"-30.875643,80.34744,-3.7897167,24.76221,11.368554,23.227436,12.461986,16.95786,8.848226,8.464668,4.969688,9.873408,3.3600235,4.8470044,-0.11339828,3.5947998,0.14629224,3.7172935,-3.204491,3.9392855"
Dance MF,Anil Aras,Dance MF,2016,,Unknown to the Unknown,/mnt/d/UTTU/Anil Aras/Anil Aras - Dance MF - 01 Dance MF.mp3,123.046875,"-75.51817,24.855219,0.76989496,28.863882,14.759832,24.073143,8.596652,12.557687,4.226553,9.609698,2.1844523,7.2141333,2.3923151,5.471884,5.0863504,6.5786233,0.036817428,5.012513,3.0711157,4.96422"
HH Drive,Assembler Code & Alex Jann,Dance Trax Vol.24 + Roza Terenzi Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Alex Jann/Assembler Code & Alex Jann - Dance Trax Vol.24 + Roza Terenzi Remix - 01 HH Drive.mp3,143.5546875,"-68.731415,62.868355,6.4540505,10.098204,22.045994,13.254396,-0.33009446,7.770995,4.5892634,13.405588,0.6685879,5.228327,5.1544557,8.612858,3.851914,3.607488,3.3120987,8.227642,2.5160446,2.803366"
Humanoid Future,Assembler Code & Alex Jann,Dance Trax Vol.24 + Roza Terenzi Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Alex Jann/Assembler Code & Alex Jann - Dance Trax Vol.24 + Roza Terenzi Remix - 03 Humanoid Future.mp3,135.99917763157896,"-67.136475,56.929035,4.0601883,24.965214,8.45029,13.468404,7.989539,15.506801,2.6317062,10.2938595,5.653422,10.527558,4.03631,4.651501,2.0576222,4.9107704,0.735574,4.7028136,-0.7435484,2.4967232"
Humanoid Future (Roza Terenzi Remix),Assembler Code & Alex Jann,Dance Trax Vol.24 + Roza Terenzi Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Alex Jann/Assembler Code & Alex Jann - Dance Trax Vol.24 + Roza Terenzi Remix - 04 Humanoid Future (Roza Terenzi Remix).mp3,143.5546875,"-80.63616,55.35987,12.202008,20.622856,1.5550631,14.062854,2.0591173,12.449105,-2.0962641,9.032844,4.576891,5.3156238,1.0526066,3.8869774,0.7058518,4.387703,-0.6151962,3.9234765,1.4472835,3.6011608"
Electrodynamic,Assembler Code & Alex Jann,Dance Trax Vol.24 + Roza Terenzi Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Alex Jann/Assembler Code & Alex Jann - Dance Trax Vol.24 + Roza Terenzi Remix - 05 Electrodynamic.mp3,99.38401442307692,"-56.715244,81.6469,1.8238454,21.995031,11.962858,17.32507,8.822048,13.308145,4.069738,7.878773,6.3251624,6.207217,0.18419127,-0.46776906,-2.5732992,1.6262095,-0.103098534,4.44135,0.0418591,0.7713482"
Humanoid Future (Roza Terenzi Remix),Assembler Code & Alex Jann,,2019,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Alex Jann/Assembler Code & Alex Jann - Humanoid Future (Roza Terenzi Remix).mp3,143.5546875,"-80.63616,55.35987,12.202008,20.622856,1.5550631,14.062854,2.0591173,12.449105,-2.0962641,9.032844,4.576891,5.3156238,1.0526066,3.8869774,0.7058518,4.387703,-0.6151962,3.9234765,1.4472835,3.6011608"
Outer Trace,Assembler Code,Dance Trax Vol.24 + Roza Terenzi Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Alex Jann/Assembler Code - Dance Trax Vol.24 + Roza Terenzi Remix - 02 Outer Trace.mp3,95.703125,"-62.232693,64.90332,26.392632,9.2096405,15.025813,17.592806,2.419433,13.922104,0.11714986,12.533061,-1.3654572,7.9051943,-0.71518564,4.9305453,1.2153399,6.776084,2.2059975,2.475565,-0.5143228,3.583418"
Bioluminescence,Assembler Code & Jensen Interceptor,Bioluminescence,2023,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Jensen Interceptor/Assembler Code & Jensen Interceptor - Bioluminescence - 01 Bioluminescence.mp3,143.5546875,"-57.35176,53.13306,11.699022,17.192026,4.051285,18.029724,1.4375676,5.0766697,7.032359,11.28909,6.15839,8.951811,-2.6601644,3.622139,-1.1988775,6.4902415,2.7136846,1.8930044,5.8466673,3.2072985"
Xtro,Assembler Code & Jensen Interceptor,Bioluminescence,2023,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Jensen Interceptor/Assembler Code & Jensen Interceptor - Bioluminescence - 02 Xtro.mp3,151.99908088235293,"-59.67736,38.97181,12.872976,20.221376,9.150545,14.15631,6.365883,15.939169,3.8147702,14.083886,5.4791203,6.29622,3.2279217,5.6342287,4.0236115,7.6678686,5.590449,7.1281004,-0.31530535,5.218012"
Not A Test,Assembler Code & Jensen Interceptor,Bioluminescence,2023,,Unknown to the Unknown,/mnt/d/UTTU/Assembler Code & Jensen Interceptor/Assembler Code & Jensen Interceptor - Bioluminescence - 03 Not A Test.mp3,95.703125,"-17.280811,70.299164,1.8665463,25.907919,3.3174937,15.923793,0.06556349,9.957915,0.45576102,9.57418,-0.8517043,10.556943,1.9365188,6.4380746,0.56854045,6.7016096,2.5308974,7.912888,0.8347451,4.205281"
Cherry (Legowelt remix),Baba Stiltz,Cherry,2015-11-20,,Unknown to the Unknown,/mnt/d/UTTU/Baba Stiltz/Baba Stiltz - Cherry EP - 01 Cherry.mp3,129.19921875,"-20.696753,102.80577,-26.548565,29.834217,-0.034220416,31.184727,-2.9455223,18.511768,-1.2935361,14.517841,-2.92707,6.1989098,2.927181,4.974423,5.906565,6.842742,-1.1381013,2.2556102,-2.6076548,-4.0981197"
Cherry,Baba Stiltz,Cherry,2015-11-20,,Unknown to the Unknown,/mnt/d/UTTU/Baba Stiltz/Baba Stiltz - Cherry EP - 02 Cherry (Legowelt Remix).mp3,129.19921875,"-103.313576,62.85145,16.423536,23.742155,6.9823227,14.516976,3.3439255,6.1252923,3.4552567,10.279354,1.3379457,4.8069963,1.5938005,2.8220532,2.4207022,3.6665812,-2.3396354,3.5497096,0.21807037,-2.6026132"
IntrStellr,Baba Stiltz,Cherry EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Baba Stiltz/Baba Stiltz - Cherry EP - 03 IntrStellr.mp3,129.19921875,"-131.64732,19.4898,48.24874,40.655922,-7.827321,9.938522,2.0806987,7.236946,3.8406699,10.628109,8.241675,10.860443,5.435587,10.574489,8.083302,8.94826,0.8728316,5.8997083,-1.9083091,0.05507732"
Bakground - Time Passes,BAKGROUND / DJ TORTURE / RAW AMBASSADOR + MORE,OS XXX (Free Download),2021,,Unknown to the Unknown,/mnt/d/UTTU/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE - OS XXX (Free Download) - 01 Bakground - Time Passes.mp3,143.5546875,"-35.979492,124.198235,-46.68798,29.34839,-14.027519,8.423943,-5.1687055,8.066861,-7.2632046,4.6048384,-13.704978,-4.2613897,-16.297487,-9.827319,-14.5895605,-4.2951407,-10.273224,-3.8594835,-3.1997888,0.42226943"
ESSD - Cr1604,BAKGROUND / DJ TORTURE / RAW AMBASSADOR + MORE,OS XXX (Free Download),2021,,Unknown to the Unknown,/mnt/d/UTTU/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE - OS XXX (Free Download) - 02 ESSD - Cr1604.mp3,117.45383522727273,"-67.5056,115.750084,-30.472246,21.857584,-0.72929984,17.616543,6.427942,13.098022,1.7812377,9.022189,-0.12852599,7.2916155,4.2076936,8.05756,5.4220614,5.221685,0.04311016,1.6742008,-0.13437317,2.498993"
Antonio - Till The End,BAKGROUND / DJ TORTURE / RAW AMBASSADOR + MORE,OS XXX (Free Download),2021,,Unknown to the Unknown,/mnt/d/UTTU/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE - OS XXX (Free Download) - 03 Antonio - Till The End.mp3,129.19921875,"-25.34977,80.42297,-3.1747675,40.037586,7.480701,21.632353,1.8924605,18.819614,0.17198047,11.093521,-3.6040602,8.404368,-1.7366064,1.7857637,0.14285421,1.6574793,-2.6688385,-0.0124623,-1.365452,1.0236199"
Bakground - Long Live JJ,BAKGROUND / DJ TORTURE / RAW AMBASSADOR + MORE,OS XXX (Free Download),2021,,Unknown to the Unknown,/mnt/d/UTTU/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE - OS XXX (Free Download) - 04 Bakground - Long Live JJ.mp3,99.38401442307692,"-92.843506,162.53444,-23.78639,40.329906,-8.328705,4.286743,-12.982471,3.653181,-9.35419,1.0659492,-8.259178,-0.4703099,-3.6480484,0.025457572,-1.8617741,0.80083984,-0.41521284,-0.6056943,-0.15303254,-0.6947272"
DJ Torture - Belligerent Criminal,BAKGROUND / DJ TORTURE / RAW AMBASSADOR + MORE,OS XXX (Free Download),2021,,Unknown to the Unknown,/mnt/d/UTTU/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE - OS XXX (Free Download) - 05 DJ Torture - Belligerent Criminal.mp3,129.19921875,"-189.93529,83.067474,41.331417,31.730259,10.5691,18.512724,7.840091,9.858611,3.3808007,8.384025,3.0984244,4.794778,1.6931287,2.926128,-0.35686418,4.8722267,0.901443,0.9191356,-1.5199046,1.265004"
Raw Ambassador - TYG,BAKGROUND / DJ TORTURE / RAW AMBASSADOR + MORE,OS XXX (Free Download),2021,,Unknown to the Unknown,/mnt/d/UTTU/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE/BAKGROUND - DJ TORTURE - RAW AMBASSADOR + MORE - OS XXX (Free Download) - 06 Raw Ambassador - TYG.mp3,117.45383522727273,"-21.106092,116.64682,-11.7781,27.618256,-3.2758737,25.107119,-3.7438896,13.1696205,1.9413886,3.802172,3.600306,3.2919939,2.3482633,4.7068114,-2.9510722,0.5353202,-3.4654315,2.7412581,-2.1549606,0.4760476"
622,BAKKED,Riot EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/BAKKED/BAKKED - Riot EP - 01 622.mp3,135.99917763157896,"-97.41602,29.964087,39.63782,38.283676,19.898806,18.527924,2.1435316,10.255043,2.0207632,5.1305823,-3.3788035,3.5631511,-1.7058884,1.1828438,-1.4418815,3.800756,-3.562761,-2.893466,-3.3888307,0.22201413"
A51,BAKKED,Riot EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/BAKKED/BAKKED - Riot EP - 02 A51.mp3,172.265625,"-93.90962,54.175297,26.584068,26.244757,7.364424,18.98028,0.94023424,8.861944,-0.61989874,2.9106545,-5.226002,5.546214,4.1533093,8.181357,4.8993783,9.207689,-1.768226,-0.16477893,-2.0604377,3.1126606"
599,BAKKED,Riot EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/BAKKED/BAKKED - Riot EP - 03 599.mp3,135.99917763157896,"-125.21813,49.52494,28.248724,23.71804,14.188127,20.076237,2.2632968,7.1477427,1.5984583,5.4748626,-4.6225405,1.2801784,-2.5733,1.0868752,-2.2324,1.2727137,-6.0237374,-1.2273743,-4.382724,-1.1152128"
Tx56,BAKKED,Riot EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/BAKKED/BAKKED - Riot EP - 04 Tx56.mp3,172.265625,"-138.34209,63.956158,53.462914,25.522068,2.2278094,11.672637,-1.8239506,1.1333005,-6.2956553,-0.275722,-7.311902,-1.2639072,-5.773525,-1.2542515,-0.8434205,3.236504,-5.0205774,-0.5878485,-0.46812347,2.9048698"
My Body is a Temple,Bell Towers,My Body is a Temple + Andras Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Bell Towers/Bell Towers - My Body is a Temple + Andras Remix - 01 My Body is a Temple.mp3,123.046875,"-94.77544,101.53271,12.439995,40.037426,8.952907,15.476914,2.4197679,3.5801792,0.3161932,11.064935,0.01120568,7.1543746,-0.25346753,7.4496794,4.7605157,10.262883,8.41813,8.48758,-0.23425213,4.5891924"
My Body is a Tempo,Bell Towers,My Body is a Temple + Andras Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Bell Towers/Bell Towers - My Body is a Temple + Andras Remix - 02 My Body is a Tempo.mp3,123.046875,"-115.73019,100.85056,-8.399757,38.040318,0.057719935,13.610085,2.05054,6.8872223,2.4131992,4.774819,4.549629,3.7395005,-0.70545185,4.6355762,1.1368921,2.6356907,-0.27771538,1.1834952,-1.5454776,0.3983605"
My Body is a Tempo (Andras Remix),Bell Towers,My Body is a Temple + Andras Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Bell Towers/Bell Towers - My Body is a Temple + Andras Remix - 03 My Body is a Tempo (Andras Remix).mp3,129.19921875,"-199.12863,82.94128,34.35796,23.584507,9.82977,16.98192,10.927777,13.1276245,4.60576,9.210963,1.5446348,4.0307307,1.735749,4.291279,2.4602137,3.1681573,-0.6700376,2.1727612,-1.4564852,1.0170798"
Cocaine Speaking,Benny Rodrigues,Cocaine Speaking,2018,,Unknown to the Unknown,/mnt/d/UTTU/Benny Rodrigues/Benny Rodrigues - Cocaine Speaking - 01 Cocaine Speaking.mp3,129.19921875,"-95.48791,100.697685,10.897558,21.325342,5.0105953,10.255306,-1.8189433,8.401713,2.050878,3.5908926,1.0018731,4.497258,-3.7705655,3.1179724,2.6303806,2.5743642,-3.5021627,4.2784176,-0.03460789,1.4006507"
Cocaine Speaking - (Alden Tyrell Remix),Benny Rodrigues,Cocaine Speaking,2018,,Unknown to the Unknown,/mnt/d/UTTU/Benny Rodrigues/Benny Rodrigues - Cocaine Speaking - 02 Cocaine Speaking - (Alden Tyrell Remix).mp3,123.046875,"-35.6085,81.44273,24.765577,28.864729,12.024717,21.342861,1.2806247,13.646759,5.2770185,9.072959,5.0593743,7.34137,0.7040302,4.140551,1.7348895,4.1523986,-1.0039493,2.9623237,-1.1617645,1.4901261"
Cocaine,Benny Rodrigues,Cocaine Speaking,2018,,Unknown to the Unknown,/mnt/d/UTTU/Benny Rodrigues/Benny Rodrigues - Cocaine Speaking - 03 Cocaine.mp3,129.19921875,"-100.315506,90.190636,21.531324,16.457878,14.396759,18.728342,2.0201602,11.316889,5.795552,12.510632,5.7186747,2.1308787,-7.275434,-1.4589032,0.76044244,7.2156677,2.943023,5.798895,4.58132,8.384269"
Sonder,Big Miz,Sonder / Opia,2020,,Unknown to the Unknown,/mnt/d/UTTU/Big Miz/Big Miz - Sonder - Opia - 01 Sonder.mp3,83.35433467741936,"-60.52303,89.95141,10.165684,-3.4190152,7.8139124,17.654533,9.865295,14.193381,-0.29839548,8.092748,-0.8401455,5.956443,1.1626214,4.15145,-0.65096974,3.515662,2.7053587,5.1072884,2.5191557,2.2237144"
Opia,Big Miz,Sonder / Opia,2020,,Unknown to the Unknown,/mnt/d/UTTU/Big Miz/Big Miz - Sonder - Opia - 02 Opia.mp3,92.28515625,"-106.687355,120.8796,-4.6180115,30.63233,2.4415812,10.912957,-0.4531014,2.7817743,-2.5714023,1.6720676,-1.4992582,2.3784146,-1.7464029,1.0231739,-3.3200016,-0.66231,-3.9380815,-0.50117564,-1.2723333,2.0755851"
System Booting,Binary Operator,Colliding Network EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Binary Operator/Binary Operator - Colliding Network EP - 01 System Booting.mp3,129.19921875,"-132.37404,60.917282,34.535957,17.484804,17.166517,14.139991,2.2438939,10.924129,-1.7747303,7.850547,3.8871672,6.167573,1.4551038,3.8370714,3.606582,4.004596,-0.86952543,5.6559434,1.64156,4.543754"
Bits & Bytes,Binary Operator,Colliding Network EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Binary Operator/Binary Operator - Colliding Network EP - 02 Bits & Bytes.mp3,83.35433467741936,"-137.46187,74.32091,42.677307,15.861161,-2.5764334,8.079937,5.62968,4.884349,2.0348442,-1.3263999,-1.7841887,2.1560802,-4.6257305,-4.129081,-1.3255204,0.6272289,-1.8739989,3.0091777,-2.6001585,1.3864535"
Colliding Network,Binary Operator,Colliding Network EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Binary Operator/Binary Operator - Colliding Network EP - 03 Colliding Network.mp3,129.19921875,"-194.91151,74.94388,22.332722,16.288467,9.180485,13.721144,-0.11646889,9.036777,-1.2992592,3.4502692,2.1447008,5.2686605,-1.7048644,3.842183,0.9879429,2.8774824,2.2041328,4.845169,0.9965604,2.4443967"
Data Crash,Binary Operator,Colliding Network EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Binary Operator/Binary Operator - Colliding Network EP - 04 Data Crash.mp3,129.19921875,"-147.79677,74.1325,3.9254751,10.720942,5.4758754,6.7200227,-3.5598595,2.0438278,-1.0325967,3.5843396,-2.042192,1.2940284,-2.8706038,0.056983598,-3.2032304,1.5245054,-1.262176,1.7804174,-3.2743697,0.15481493"
Dial Your Operator,Binary Operator,Colliding Network EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Binary Operator/Binary Operator - Colliding Network EP - 05 Dial Your Operator.mp3,129.19921875,"-166.28162,79.16616,34.09343,28.687956,15.1762,18.314835,4.121355,14.594957,-2.731163,5.4979815,2.6310046,4.7234993,0.009386005,2.9768286,0.2657817,4.8860893,3.041687,2.8578188,-0.15143138,3.990033"
Hype (Funk),Bleaker,Hype (Funk),2015-09-15,,Unknown to the Unknown,/mnt/d/UTTU/Bleaker/Bleaker - Hype Funk - 01 Hype (Funk).mp3,135.99917763157896,"-78.11291,56.496624,-9.997007,19.234291,-1.9775898,13.8806505,2.8668709,13.052775,0.149563,3.7228396,4.9599757,6.227376,6.3724375,10.2099905,5.305376,5.7414536,-5.2522125,-1.9404365,-0.9645018,5.12287"
Jam,Bleaker,Hype (Funk),2015-09-15,,Unknown to the Unknown,/mnt/d/UTTU/Bleaker/Bleaker - Hype Funk - 02 Jam.mp3,89.10290948275862,"-71.07055,70.73276,-19.892887,41.106922,-5.7108393,17.31438,-3.0321312,16.581026,-3.7929287,8.34947,-1.7088484,4.3553734,-3.1669078,5.0017567,-3.5989647,1.627196,-0.94946533,3.2064137,0.5055264,1.9091493"
Hype (Funk) (Helix Remix),Bleaker,Hype (Funk),2015-09-15,,Unknown to the Unknown,/mnt/d/UTTU/Bleaker/Bleaker - Hype Funk - 03 Hype (Funk) - HELIX Remix.mp3,129.19921875,"-103.37913,40.43189,3.7003005,5.016193,-18.443806,10.866321,3.9670408,18.04235,2.3105075,6.2210402,1.3115252,3.566573,2.6709323,9.68428,1.3068248,-1.7553499,-6.034413,3.6283057,-1.7677395,-0.28297535"
Time Galactic,Bodhi,Dance Trax Vol.47,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Dance Trax Vol.47 - 01 Time Galactic.mp3,129.19921875,"-101.699455,103.770424,22.021828,8.344074,-4.3144517,4.213274,3.7713494,2.2619781,1.4847105,-0.5805352,-0.704689,6.347323,1.999554,2.804906,-0.2754382,5.096308,-1.0170524,5.2210765,-2.2194142,2.7743516"
A Luv Desire,Bodhi,Dance Trax Vol.47,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Dance Trax Vol.47 - 02 A Luv Desire.mp3,112.34714673913044,"-80.22224,87.60276,13.096695,25.351805,0.25229472,16.130766,-0.5913941,15.577146,-4.40456,3.5007079,-2.703797,1.1535352,-1.7098404,0.5856835,-4.0930133,1.1096942,-2.4450517,6.32908,0.70627046,2.406079"
Cycles Of Chania,Bodhi,Dance Trax Vol.47,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Dance Trax Vol.47 - 03 Cycles Of Chania.mp3,89.10290948275862,"-56.250156,82.15298,-10.645008,30.519678,-0.74035627,12.994609,-1.1402867,8.22644,-3.812924,4.8697414,-3.6825702,5.3724732,-1.1528152,1.045166,-2.9325995,0.36092308,-5.9482975,3.0901701,-4.7994285,-3.2702277"
Kintaro's Dreams,Bodhi,Dance Trax Vol.47,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Dance Trax Vol.47 - 04 Kintaro's Dreams.mp3,67.99958881578948,"-128.88356,134.49538,26.041615,8.308857,2.521727,13.202255,-2.856713,6.4437003,-0.62906647,1.9089358,-3.036292,1.300893,-0.024393825,0.50415707,-5.925346,-0.37302592,-3.460421,0.9134198,-2.0652003,-2.3418822"
Etch,Bodhi,Etch,2021-12-03,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Etch - 01 Etch.mp3,89.10290948275862,"-112.28917,101.94317,18.186037,22.489922,-0.74394506,6.0849447,-1.6390902,6.676416,-2.8832316,-0.48439008,-6.4997478,-1.8489087,-5.313132,-1.1561903,-4.5670886,-2.5267427,-5.147315,-3.134496,-4.099011,3.9525547"
Jati,Bodhi,Etch,2021-12-03,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Etch - 02 Jati.mp3,117.45383522727273,"-58.87447,77.57944,20.2754,22.944313,-5.6598535,12.795291,-8.335733,12.234503,-8.901457,5.6147957,-0.53073776,4.187296,4.5135455,1.0974029,4.0346355,4.7089896,2.3378232,4.9349546,0.97787726,6.4335213"
Xylette,Bodhi,Etch,2021-12-03,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Etch - 03 Xylette.mp3,129.19921875,"-88.95229,112.243286,41.57915,4.3385944,8.550987,7.034693,-0.12969701,8.098728,-1.8605559,6.845468,-5.912949,3.7630403,-4.5204053,3.8690732,4.1668434,0.32673895,3.3058512,2.620391,-3.7992187,-2.33142"
Get Up,Bodhi,Get Up,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Get Up - 01 Get Up.mp3,129.19921875,"-86.01233,52.866848,23.423922,24.827751,9.456579,10.184498,11.334407,5.605545,6.0360117,3.761789,0.2606032,8.037151,0.9035075,3.7156389,-3.5523534,2.2278621,-2.9175792,-0.050340395,-0.12502883,1.1682466"
Auralex,Bodhi,Get Up,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Get Up - 02 Auralex.mp3,135.99917763157896,"-72.93335,54.94872,33.392315,30.821295,6.9991646,20.173468,-1.2919186,21.999174,1.816738,11.242106,-4.9047875,5.2699904,7.597056,8.352775,4.274265,11.385529,0.55950534,-0.8587367,-5.8605204,1.0816596"
Down 4 U,Bodhi,Get Up,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Get Up - 03 Down 4 U.mp3,92.28515625,"-61.02715,76.61895,26.282776,23.19703,7.682399,13.889665,5.2934866,10.449464,3.60213,6.9096837,2.162323,5.203985,1.070038,1.9937292,4.124593,2.7166584,-1.2524517,2.4776444,-1.0306488,10.0588665"
Hex,Bodhi,Get Up,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bodhi/Bodhi - Get Up - 04 Hex.mp3,172.265625,"-72.00738,61.455433,11.09301,22.502096,18.920174,16.67131,5.115894,9.452808,0.6323371,5.081487,-3.6711426,1.2454315,-2.6032622,-1.2798374,-0.42159483,3.0198295,-0.66165125,5.525226,3.264154,5.118811"
Arrears,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski/Bogdan Raczynski - Debt EP - 01 Arrears.mp3,161.4990234375,"15.954527,48.182228,30.015678,29.063162,7.906645,16.28892,7.519059,10.554705,3.4106388,11.948042,-0.36987978,8.39839,4.260765,4.6881623,2.6740453,7.9884853,-0.6991812,0.70523864,-1.2489271,-0.40963593"
Collection Agency,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski/Bogdan Raczynski - Debt EP - 02 Collection Agency.mp3,143.5546875,"36.846146,67.023,5.9778757,27.425629,1.5768943,12.310951,9.015388,10.254725,-0.70871574,6.470239,1.010768,5.12118,2.888899,5.472749,-2.5931637,2.091561,-1.2563084,2.888312,-0.81399214,4.5184817"
Compound Interest,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski/Bogdan Raczynski - Debt EP - 03 Compound Interest.mp3,143.5546875,"-39.151363,90.67012,3.764616,33.351833,3.3727796,16.493305,6.988468,13.450183,7.869527,9.393622,2.7868807,3.301573,0.22011349,4.6379294,0.5951577,4.601936,0.7414999,7.283382,2.0162988,4.0429626"
Lien,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski/Bogdan Raczynski - Debt EP - 04 Lien.mp3,151.99908088235293,"-32.827713,102.76487,15.030246,29.808926,6.9492407,14.15416,5.929167,13.406354,4.9347844,10.165868,4.4919457,6.5032053,1.0275518,3.6403883,0.19387157,4.373329,0.019583689,2.4255748,-1.9968289,1.2375469"
Net Assets,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski/Bogdan Raczynski - Debt EP - 05 Net Assets.mp3,75.99954044117646,"-45.00529,103.809654,-0.28407842,31.437817,5.9138966,16.193338,1.1801642,9.172693,4.201457,9.972292,3.4770665,7.44312,2.4183757,5.346415,-0.48235932,2.4441414,0.7801308,6.049601,1.0246253,3.5822592"
Arrears,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski - Debt EP/Bogdan Raczynski - Debt EP - 01 Arrears.mp3,161.4990234375,"15.954527,48.182228,30.015678,29.063162,7.906645,16.28892,7.519059,10.554705,3.4106388,11.948042,-0.36987978,8.39839,4.260765,4.6881623,2.6740453,7.9884853,-0.6991812,0.70523864,-1.2489271,-0.40963593"
Collection Agency,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski - Debt EP/Bogdan Raczynski - Debt EP - 02 Collection Agency.mp3,143.5546875,"36.846146,67.023,5.9778757,27.425629,1.5768943,12.310951,9.015388,10.254725,-0.70871574,6.470239,1.010768,5.12118,2.888899,5.472749,-2.5931637,2.091561,-1.2563084,2.888312,-0.81399214,4.5184817"
Compound Interest,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski - Debt EP/Bogdan Raczynski - Debt EP - 03 Compound Interest.mp3,143.5546875,"-39.151363,90.67012,3.764616,33.351833,3.3727796,16.493305,6.988468,13.450183,7.869527,9.393622,2.7868807,3.301573,0.22011349,4.6379294,0.5951577,4.601936,0.7414999,7.283382,2.0162988,4.0429626"
Lien,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski - Debt EP/Bogdan Raczynski - Debt EP - 04 Lien.mp3,151.99908088235293,"-32.827713,102.76487,15.030246,29.808926,6.9492407,14.15416,5.929167,13.406354,4.9347844,10.165868,4.4919457,6.5032053,1.0275518,3.6403883,0.19387157,4.373329,0.019583689,2.4255748,-1.9968289,1.2375469"
Net Assets,Bogdan Raczynski,Debt EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Bogdan Raczynski - Debt EP/Bogdan Raczynski - Debt EP - 05 Net Assets.mp3,75.99954044117646,"-45.00529,103.809654,-0.28407842,31.437817,5.9138966,16.193338,1.1801642,9.172693,4.201457,9.972292,3.4770665,7.44312,2.4183757,5.346415,-0.48235932,2.4441414,0.7801308,6.049601,1.0246253,3.5822592"
Pachinco Man (2023 Remaster),BOOGIE MAN,Pachinco Man + Denham Audio Remix,2023,,Unknown to the Unknown,/mnt/d/UTTU/BOOGIE MAN/BOOGIE MAN - Pachinco Man + Denham Audio Remix - 01 Pachinco Man (2023 Remaster).mp3,89.10290948275862,"-53.01778,73.90649,9.121862,26.6891,6.667478,8.018428,4.907164,4.840831,4.302862,5.5328245,3.4851315,10.544762,0.25688827,4.244418,-2.6150181,5.543812,-5.069003,1.4366927,0.06190167,0.8097185"
Pachinco Man (Denham Audio Remix),BOOGIE MAN,Pachinco Man + Denham Audio Remix,2023,,Unknown to the Unknown,/mnt/d/UTTU/BOOGIE MAN/BOOGIE MAN - Pachinco Man + Denham Audio Remix - 02 Pachinco Man (Denham Audio Remix).mp3,103.359375,"-41.14144,39.967888,16.57944,40.488407,2.0544958,13.90987,-0.6719482,10.51035,0.26888546,6.9535384,-1.171975,7.8105536,0.9040216,4.4418454,-0.7477587,4.222203,-4.2078733,3.4627452,-1.6886623,4.1149373"
Harzer,Brame & Hamo,Retro Active EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Brame & Hamo/Brame & Hamo - Retro Active EP - 01 Harzer.mp3,129.19921875,"-49.026928,29.561571,21.505972,25.851639,1.8195572,15.44355,-0.22203545,3.2182097,-3.8021348,2.682692,-4.2478075,2.794806,-2.9192462,0.61254823,-3.751059,0.28673643,-4.358262,0.84938836,-3.7929325,0.73230755"
Retro Active,Brame & Hamo,Retro Active EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Brame & Hamo/Brame & Hamo - Retro Active EP - 02 Retro Active.mp3,123.046875,"-72.19576,56.315384,23.101822,22.894257,4.619746,13.48348,4.9794855,6.7280045,-3.4133227,4.0788445,-1.6893038,5.532319,2.9908926,5.315282,1.0610436,1.9626232,-2.2280753,0.9063586,-1.2804232,3.4312677"
Floor Nine,Brame & Hamo,Retro Active EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Brame & Hamo/Brame & Hamo - Retro Active EP - 03 Floor Nine.mp3,99.38401442307692,"-63.976982,41.317417,34.903267,19.844576,14.273156,24.52713,3.7709253,7.3198113,3.51987,12.590513,-0.6491119,8.05597,6.8868794,7.714535,2.5266876,8.735003,2.5735474,4.9056444,-1.124868,3.7428348"
Polyvers,Bwi-Bwi,Polyvers,2023,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Polyvers - 01 Polyvers.mp3,123.046875,"-69.22826,51.82135,18.959131,19.580782,0.49545023,9.54583,4.1397357,11.473615,1.187402,5.624106,1.2771379,5.1728473,-3.7556288,-2.5676181,-1.1944472,6.0663238,-4.8605185,-0.7486289,-4.3009686,4.597592"
A6D,Bwi-Bwi,Polyvers,2023,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Polyvers - 02 A6D.mp3,129.19921875,"-42.763065,37.149197,2.6821446,24.405642,1.4748027,14.5838995,3.9060268,7.8551726,3.85859,5.9499884,-0.5371987,3.7013338,-0.19061057,2.5834677,0.12035137,2.780001,-0.6750938,4.1912127,1.7248625,4.6488447"
Toti,Bwi-Bwi,Polyvers,2023,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Polyvers - 03 Toti.mp3,129.19921875,"-91.93567,28.848463,3.3464053,39.675068,12.027118,27.413935,1.0378006,17.317022,0.9075395,15.481905,0.5821832,9.754572,3.7866528,5.604836,-1.0217069,0.5296281,-0.4701486,3.7376928,3.3314955,5.966412"
Up & Down,Bwi-Bwi,Voir Venir,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Voir Venir - 01 Up & Down.mp3,123.046875,"-100.2354,42.943935,40.4886,21.405941,10.330305,17.64225,-3.7878454,3.274103,-4.62515,5.801603,-7.9021697,2.4254181,-3.6365654,0.16994047,-6.8352723,-1.3980266,-1.0718943,0.24320194,-4.1554694,1.2710582"
Voir Venir,Bwi-Bwi,Voir Venir,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Voir Venir - 02 Voir Venir.mp3,129.19921875,"-116.36423,93.067795,-0.72530365,22.47471,17.1948,15.723548,4.719844,1.4016495,2.2107673,4.6165557,0.28999987,0.8364857,0.7479127,4.0851407,0.060354184,7.0298495,-2.2728596,4.2834134,-1.5253417,3.8926392"
Wet Wax,Bwi-Bwi,Voir Venir,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Voir Venir - 03 Wet Wax.mp3,123.046875,"-76.98095,64.79309,9.0510645,20.790985,8.516413,12.186335,0.66843987,6.6174836,2.5743148,4.485266,-4.838195,2.0684376,-1.9476341,-0.69784147,-3.5996146,1.8369265,0.4630867,-0.5989863,-3.8790734,-0.88208646"
Sat Zone,Bwi-Bwi,Voir Venir,2022,,Unknown to the Unknown,/mnt/d/UTTU/Bwi-Bwi/Bwi-Bwi - Voir Venir - 04 Sat Zone.mp3,123.046875,"-106.61156,75.00121,25.637957,29.026209,8.46126,9.392383,2.6388552,4.799384,-3.6959589,5.414243,-0.48336977,3.352659,-1.411858,-1.8104523,-4.952407,3.6372957,-0.61902803,1.985843,-5.3047357,1.5200726"
Cross Strut,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select/Cassius Select - Crook EP - 01 Cross Strut.mp3,129.19921875,"-132.4111,69.934296,9.191767,28.947407,6.280988,12.987481,6.0976863,9.164933,-2.0273573,6.6988444,-1.69944,6.7384934,0.3550266,4.8546476,-0.85419214,4.1695943,-0.8682615,2.2552767,-1.1431572,1.2866459"
Crook,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select/Cassius Select - Crook EP - 02 Crook.mp3,86.1328125,"-127.31927,90.768326,-10.201972,32.832844,5.245923,2.5550952,2.453309,10.31868,6.510218,9.267563,6.287904,11.4449625,2.586383,8.073591,0.4843423,3.8015637,2.6639037,2.8093877,0.38628933,4.302038"
Joy Mile,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select/Cassius Select - Crook EP - 03 Joy Mile.mp3,129.19921875,"-128.07146,64.16139,2.4028182,32.58122,8.877024,32.627304,12.4780035,15.810955,8.37837,11.6681,3.3502126,8.701224,3.0816915,4.543013,-0.66150224,2.3553057,-3.544484,1.7273536,-2.4293354,0.2566579"
He Ain't Worth,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select/Cassius Select - Crook EP - 04 He Ain't Worth.mp3,135.99917763157896,"-127.53284,63.27801,4.3134274,30.66809,8.693457,20.708677,5.6179795,12.042593,4.462743,10.197651,3.0040145,11.584057,2.9432654,6.980842,0.3902664,4.0354595,0.29839247,5.0211625,1.3917061,5.3721104"
Cross Strut,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select - Crook EP/Cassius Select - Crook EP - 01 Cross Strut.mp3,129.19921875,"-132.4111,69.934296,9.191767,28.947407,6.280988,12.987481,6.0976863,9.164933,-2.0273573,6.6988444,-1.69944,6.7384934,0.3550266,4.8546476,-0.85419214,4.1695943,-0.8682615,2.2552767,-1.1431572,1.2866459"
Crook,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select - Crook EP/Cassius Select - Crook EP - 02 Crook.mp3,86.1328125,"-127.31927,90.768326,-10.201972,32.832844,5.245923,2.5550952,2.453309,10.31868,6.510218,9.267563,6.287904,11.4449625,2.586383,8.073591,0.4843423,3.8015637,2.6639037,2.8093877,0.38628933,4.302038"
Joy Mile,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select - Crook EP/Cassius Select - Crook EP - 03 Joy Mile.mp3,129.19921875,"-128.07146,64.16139,2.4028182,32.58122,8.877024,32.627304,12.4780035,15.810955,8.37837,11.6681,3.3502126,8.701224,3.0816915,4.543013,-0.66150224,2.3553057,-3.544484,1.7273536,-2.4293354,0.2566579"
He Ain't Worth,Cassius Select,Crook EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Cassius Select - Crook EP/Cassius Select - Crook EP - 04 He Ain't Worth.mp3,135.99917763157896,"-127.53284,63.27801,4.3134274,30.66809,8.693457,20.708677,5.6179795,12.042593,4.462743,10.197651,3.0040145,11.584057,2.9432654,6.980842,0.3902664,4.0354595,0.29839247,5.0211625,1.3917061,5.3721104"
Evenue,Chambray,Evenue,2016-04-08,,Unknown to the Unknown,/mnt/d/UTTU/Chambray/Chambray - Evenue - 01 Evenue.mp3,123.046875,"-120.95084,83.069115,17.649092,3.3499472,-8.7286215,12.12706,12.344135,8.268272,-1.2386018,7.930689,3.477385,9.45572,6.2933555,-1.0958302,-5.8813643,0.51340526,0.97875875,4.757947,2.634315,-2.239489"
Makin' Me,Chambray,Evenue,2016-04-08,,Unknown to the Unknown,/mnt/d/UTTU/Chambray/Chambray - Evenue - 02 Makin' Me.mp3,123.046875,"-76.05076,70.26189,-10.379054,24.712563,-10.136557,18.135767,6.107295,11.287102,0.6219813,9.993079,-5.8127675,5.336077,2.8346107,3.1239157,-1.184033,-1.9083676,-2.6206782,2.7778964,-3.9219713,-1.00292"
Makin' Me (AM Unit remix),Chambray,Evenue,2016-04-08,,Unknown to the Unknown,/mnt/d/UTTU/Chambray/Chambray - Evenue - 03 Makin' Me (AM Unit Remix).mp3,83.35433467741936,"-93.86946,94.46662,-15.365512,17.328747,-3.4179518,15.068093,3.2327435,6.6369376,-0.67252445,0.12948094,-7.87614,1.3003418,0.23392557,2.1716704,-0.58631915,-3.6934788,-5.8553495,-3.687363,-1.2137247,-1.9495173"
Delorean Dreams,Chaos In The Cbd,Delorean Dreams,2014,,Unknown to the Unknown,/mnt/d/UTTU/Chaos In The CBD/Chaos In The CBD - DeLorean Dreams + Legowelt Remix - 01 DeLorean Dreams.mp3,123.046875,"-113.67343,108.08851,35.695927,11.540709,18.502634,16.214796,-5.36933,9.537886,-3.9213803,2.7890809,1.4275533,5.2713113,-4.7911134,3.5445008,1.6867791,-3.370342,-4.93728,1.3626785,-5.091465,-4.9053082"
"Delorean Dreams (Legowelt ""By A Lighthouse"" Remix)",Chaos In The Cbd,Delorean Dreams,2014,,Unknown to the Unknown,/mnt/d/UTTU/Chaos In The CBD/Chaos In The CBD - DeLorean Dreams + Legowelt Remix - 02 DeLorean Dreams (Legowelt By A Light House Remix).mp3,123.046875,"-55.554176,103.14484,4.0789933,15.986818,6.966875,4.8186426,5.749961,13.325364,-1.0179079,15.037326,0.39245552,7.720877,5.206051,6.249859,5.7211757,4.854864,3.6668177,5.10842,1.5332179,6.6765513"
Okinawa Race 1,Chaos In The Cbd,Delorean Dreams,2014,,Unknown to the Unknown,/mnt/d/UTTU/Chaos In The CBD/Chaos In The CBD - DeLorean Dreams + Legowelt Remix - 03 Okinawa Race 1.mp3,129.19921875,"-102.802086,77.140495,34.159214,-10.67576,7.4285913,10.082876,3.0843341,9.437198,2.5919745,6.8194013,0.33057585,2.5185902,0.6816072,0.8974371,-0.65911376,2.5409405,-3.844223,0.25115463,-5.0407147,-2.1223004"
Hytz,Checan,Hytz / Feels So Right,2012-02-04,,Unknown to the Unknown,/mnt/d/UTTU/Checan/Checan - Hytz - Feels So Right - 01 Hytz.mp3,64.599609375,"-54.205513,61.03726,27.443806,11.475181,-3.364446,13.82306,1.3621857,4.2261333,3.4504232,2.9873114,2.9050007,9.680345,0.6709856,1.2434176,-5.7401853,6.021277,1.76174,2.8706093,-3.5623002,-0.75125533"
Feels So Right,Checan,Hytz / Feels So Right,2012-02-04,,Unknown to the Unknown,/mnt/d/UTTU/Checan/Checan - Hytz - Feels So Right - 02 Feels So Right.mp3,89.10290948275862,"-71.67489,80.739716,40.904133,9.767535,12.152924,13.607545,1.5483176,11.094357,-5.809033,3.7307599,-2.7353454,3.3486297,0.0096581895,3.2496076,2.0551522,2.0199604,-0.55716586,4.3816547,-0.51225376,1.5782459"
Future State,Cignol,Future State EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cignol/Cignol - Future State EP - 01 Future State.mp3,129.19921875,"-108.93302,86.459404,17.38604,-1.6133285,5.233893,12.887368,2.402646,7.773993,0.14255464,9.495022,-2.4455292,2.8695788,3.1525292,5.312445,2.412898,4.4862185,0.7880828,4.6770296,1.7211674,1.1308801"
Between You and Me,Cignol,Future State EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cignol/Cignol - Future State EP - 02 Between You and Me.mp3,129.19921875,"-150.73997,94.88877,43.686947,3.5522187,5.4531302,7.5196347,-4.015273,4.6741676,-8.065775,5.959838,-4.592488,-0.43617406,-0.02086264,2.6034749,2.3810465,-0.32598284,-1.9726913,1.5015898,-1.0098565,1.7121191"
Echus Chasma,Cignol,Future State EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cignol/Cignol - Future State EP - 03 Echus Chasma.mp3,129.19921875,"-99.95624,107.17665,13.481153,3.3472924,7.403466,9.712688,1.064292,10.843747,-2.6204739,8.518839,-1.3211818,4.1705885,1.2697521,1.7300738,2.4101458,2.3075423,1.8217887,4.121302,1.4165655,2.418841"
Seasonal Flow,Cignol,Future State EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cignol/Cignol - Future State EP - 04 Seasonal Flow.mp3,89.10290948275862,"-156.04704,90.281685,47.482513,19.230259,19.125021,21.253973,1.3116846,11.136476,-2.7075377,7.672584,-2.1627882,0.48073238,0.31171012,4.057895,1.5822442,0.13179426,0.38487092,3.9953525,0.89346963,3.5988142"
E-String,Cliff Lothar,Tool Tyme + DJ Boneyard Remix,2017,,Unknown to the Unknown,/mnt/d/UTTU/Cliff Lothar/Cliff Lothar - Tool Tyme + DJ Boneyard Remix - 01 E-String.mp3,117.45383522727273,"-72.3075,109.26732,-30.371868,6.7983437,-1.5004007,5.73577,1.8037852,9.141194,3.4529917,10.588522,0.799269,6.7525287,4.2736135,5.8853536,1.822915,6.3075104,1.2194047,2.0367694,-0.12598181,3.2144916"
Tool Tyme,Cliff Lothar,Tool Tyme + DJ Boneyard Remix,2017,,Unknown to the Unknown,/mnt/d/UTTU/Cliff Lothar/Cliff Lothar - Tool Tyme + DJ Boneyard Remix - 02 Tool Tyme.mp3,117.45383522727273,"-71.34228,78.35629,-1.180681,24.793072,8.657349,15.625772,7.9900136,10.51772,-1.7090786,3.1792674,-7.374859,-0.64896214,-4.797449,1.7797071,1.1705321,5.1829753,-1.6320599,1.7690907,-0.19362594,1.7026706"
E-String (DJ Boneyard Remix),Cliff Lothar,Tool Tyme + DJ Boneyard Remix,2017,,Unknown to the Unknown,/mnt/d/UTTU/Cliff Lothar/Cliff Lothar - Tool Tyme + DJ Boneyard Remix - 03 E-String (DJ Boneyard Remix).mp3,129.19921875,"-81.09105,93.40728,-14.125,5.8494782,2.2521367,15.393075,11.4083805,3.850816,-2.4739559,7.7216096,1.052627,5.767128,4.503732,2.6132736,-2.0040147,7.3133264,6.0427313,3.319473,-1.4123881,-1.6918938"
Viruz,Confidential Recipe,Dance Trax Vol. 58,2023,,Unknown to the Unknown,/mnt/d/UTTU/Confidential Recipe/Confidential Recipe - Dance Trax Vol. 58 - 01 Viruz.mp3,135.99917763157896,"-92.09626,53.035046,21.973442,40.498936,2.89917,14.890306,8.729173,5.389819,8.164793,7.9008703,3.1768467,5.887827,2.5962472,5.854439,0.82217616,7.6372256,1.7139705,4.1978197,0.4833431,5.968125"
Give Me Ya,Confidential Recipe,Dance Trax Vol. 58,2023,,Unknown to the Unknown,/mnt/d/UTTU/Confidential Recipe/Confidential Recipe - Dance Trax Vol. 58 - 02 Give Me Ya.mp3,143.5546875,"-87.24257,80.91107,15.061688,16.970194,7.015037,20.677263,6.4404616,13.4975605,3.215219,8.248412,0.53199303,5.487405,2.691558,4.6618586,3.482812,8.541305,3.7303069,5.842675,2.9918857,4.5730505"
SX01 (Raw Mix),Confidential Recipe,Dance Trax Vol. 58,2023,,Unknown to the Unknown,/mnt/d/UTTU/Confidential Recipe/Confidential Recipe - Dance Trax Vol. 58 - 03 SX01 (Raw Mix).mp3,135.99917763157896,"-88.45162,80.6894,22.205599,17.25419,13.392053,24.211132,6.0111413,7.963872,1.5377872,5.7235637,-3.1060286,2.047856,-2.3564038,-0.53782356,0.090475686,4.164159,-4.2256346,0.59451836,-0.5046362,2.80006"
SX02,Confidential Recipe,Dance Trax Vol. 58,2023,,Unknown to the Unknown,/mnt/d/UTTU/Confidential Recipe/Confidential Recipe - Dance Trax Vol. 58 - 04 SX02.mp3,135.99917763157896,"-163.77809,100.92714,56.73327,37.32936,8.880436,19.772432,5.7861753,9.309093,4.1351733,5.6544867,4.1102643,5.4562206,2.579417,5.4111314,3.122742,3.3013299,2.1861916,4.961993,0.3333576,3.0081954"
SX03,Confidential Recipe,Dance Trax Vol. 58,2023,,Unknown to the Unknown,/mnt/d/UTTU/Confidential Recipe/Confidential Recipe - Dance Trax Vol. 58 - 05 SX03.mp3,135.99917763157896,"-101.45949,74.7823,25.593197,15.048591,5.2873654,21.073074,4.339341,8.855463,2.2564309,9.84153,5.934732,3.3945737,1.1943251,4.7827992,3.5760555,6.935689,3.9776635,5.8837104,-0.47873777,4.472514"
Static,Contactless,Static EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Contactless/Contactless - Static EP - 01 Static.mp3,92.28515625,"-78.14184,73.37994,-13.752827,15.572891,14.527042,9.31522,8.118757,7.2339034,5.5986304,6.349755,6.2998624,9.111045,10.251877,9.314392,8.605613,6.170286,2.7447214,4.645367,0.90376306,4.0362577"
Cybernetic Jerkin,Contactless,Static EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Contactless/Contactless - Static EP - 02 Cybernetic Jerkin.mp3,143.5546875,"-102.92324,86.66236,8.185563,11.783025,16.740637,14.33589,6.0225306,14.52791,1.9427832,6.6402807,1.3103012,4.442975,3.9912212,5.2158403,4.1096177,3.9394095,4.0109096,4.481521,0.4774452,7.8865056"
Robot Wreckin' Krew,Contactless,Static EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Contactless/Contactless - Static EP - 03 Robot Wreckin' Krew.mp3,129.19921875,"-94.814095,76.230125,4.235048,11.726622,13.180119,13.335626,10.977874,11.944938,6.5067334,11.250683,1.0648285,8.275331,5.9825077,6.1362214,5.955847,5.730539,4.157285,5.5406427,3.1270077,6.4547048"
Downpour,Contactless,Static EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Contactless/Contactless - Static EP - 04 Downpour.mp3,135.99917763157896,"-123.84546,76.82551,-3.9414117,14.305298,21.353872,11.73537,14.941207,10.261855,9.0280695,8.903798,9.785108,8.707936,9.486521,6.9753513,8.205532,6.286539,2.622448,4.162048,3.3547833,3.1436524"
Rhythm Of Life,Cosmic Garden,Rhythm Of Life EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cosmic Garden/Cosmic Garden - Rhythm Of Life EP - 01 Rhythm Of Life.mp3,117.45383522727273,"-130.12766,48.932835,27.964739,6.532518,-6.4135246,11.348278,4.1423125,9.7405815,0.7851148,5.4971147,-6.5437427,0.5268906,-2.8298554,3.6361575,-3.9503903,1.3027513,-4.591646,-1.9787562,-0.49705115,-3.383527"
High Life,Cosmic Garden,Rhythm Of Life EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cosmic Garden/Cosmic Garden - Rhythm Of Life EP - 02 High Life.mp3,123.046875,"-146.5874,49.481487,23.053179,17.354065,-6.65456,10.078933,-1.79296,9.55034,5.831821,2.5987444,2.0004187,5.5540524,2.3435328,3.9384086,1.1624411,6.1746526,-0.005922818,3.2993104,2.5446835,7.3966875"
Infinity,Cosmic Garden,Rhythm Of Life EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cosmic Garden/Cosmic Garden - Rhythm Of Life EP - 03 Infinity.mp3,123.046875,"-149.64563,87.03419,15.435306,11.066046,-9.98323,7.403628,1.8916193,5.1097097,-1.6689712,5.451859,0.1651472,6.0566363,-1.1129373,1.3603173,-6.5213437,-2.6778843,-12.262046,0.5305454,0.16498087,-0.4878616"
Earth Symphony,Cosmic Garden,Rhythm Of Life EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cosmic Garden/Cosmic Garden - Rhythm Of Life EP - 04 Earth Symphony.mp3,61.5234375,"-93.71298,69.10354,-0.83193636,31.967833,-2.5300438,5.7022114,3.9185324,8.60457,-7.6455774,5.720867,-5.7881975,1.6086276,2.5206487,8.070241,-0.59609765,6.2904205,0.4618992,-1.8294923,-5.2335787,1.7406148"
Experience,Cosmic Garden,Rhythm Of Life EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cosmic Garden/Cosmic Garden - Rhythm Of Life EP - 05 Experience.mp3,117.45383522727273,"-115.325836,79.8783,4.88184,17.68899,7.749822,6.7490025,-2.589316,7.6547403,1.2180195,5.8914437,-4.3954844,1.0549098,-3.0298498,-1.1572564,-4.64472,3.2358115,0.37114263,0.7245865,-3.068609,1.1966597"
Mood Changes,Cosmic Garden,Rhythm Of Life EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cosmic Garden/Cosmic Garden - Rhythm Of Life EP - 06 Mood Changes.mp3,80.74951171875,"-170.69525,51.503807,42.494118,33.0519,-12.849987,8.976436,4.4630938,21.111317,2.069213,7.297634,3.9144948,3.6496341,-2.8272238,-5.4307647,-12.903332,-7.997342,-13.932317,2.598744,3.8357317,3.7490199"
Cruising,Cromby,Cruising / Gigolo,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cromby/Cromby - Cruising - Gigolo - 01 Cruising.mp3,135.99917763157896,"-78.76253,48.651043,45.03922,8.534907,15.928765,18.462221,-3.542927,10.105212,-1.5153248,11.618723,-2.8708951,2.0911636,2.8926566,4.8579907,3.1181448,2.4667976,2.9830575,7.230767,-1.8785757,-0.5259706"
Gigolo,Cromby,Cruising / Gigolo,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cromby/Cromby - Cruising - Gigolo - 02 Gigolo.mp3,135.99917763157896,"-130.39178,61.463665,48.005188,27.410854,14.621529,22.928902,11.198656,14.768679,4.1561522,11.250863,6.235237,8.970935,3.9450126,4.516313,6.388163,6.4046316,-1.0958902,4.186213,-0.9270189,1.2231807"
Psychoactive Strawberries,Cromby,Dance Trax Vol.20,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cromby/Cromby - Dance Trax Vol.20 - 01 Psychoactive Strawberries.mp3,129.19921875,"-105.02734,104.40791,12.300982,22.661703,15.114642,12.03713,5.6082773,14.912515,2.8886952,8.095413,2.0427997,5.980611,-0.24420974,5.2156367,2.557809,4.8520775,1.5702238,-1.0103256,0.8981165,3.9182606"
As Prescribed,Cromby,Dance Trax Vol.20,2019,,Unknown to the Unknown,/mnt/d/UTTU/Cromby/Cromby - Dance Trax Vol.20 - 02 As Prescribed.mp3,83.35433467741936,"-131.42334,108.96403,36.26383,18.905369,2.207593,8.579691,-3.2134988,2.6969109,-3.1404457,2.6806269,-7.500455,-0.4813749,-3.523181,-3.2297885,-4.68236,-0.5315331,-7.797758,-2.1602383,-1.693143,-1.5487577"
Program State,Cyberdine Systems Corp.,Program State EP + Legowelt Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp/Cyberdine Systems Corp. - Program State EP + Legowelt Remix - 01 Program State.mp3,135.99917763157896,"-142.03014,79.68902,11.050471,28.58986,16.160915,13.297591,12.798785,16.611624,9.27637,12.300035,5.6145964,7.794614,3.6012065,14.2604,4.9059896,7.2153063,4.487012,7.7950253,0.7120948,6.3262663"
Program State (Legowelt Remix),Cyberdine Systems Corp.,Program State EP + Legowelt Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp/Cyberdine Systems Corp. - Program State EP + Legowelt Remix - 02 Program State (Legowelt Remix).mp3,135.99917763157896,"-71.41202,56.856483,14.745927,37.542046,18.387981,20.28865,2.0729985,13.7730875,2.1142607,12.143157,4.4855523,5.9280295,1.9999313,7.423519,3.9827795,6.231886,4.2916303,5.0950603,1.1059163,6.839368"
Initialise,Cyberdine Systems Corp.,Program State EP + Legowelt Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp/Cyberdine Systems Corp. - Program State EP + Legowelt Remix - 03 Initialise.mp3,135.99917763157896,"-166.19165,73.01647,17.026543,16.847628,3.3696866,7.5732126,-6.76821,4.4259567,-6.5766716,2.6351235,-3.2436619,4.1207643,3.0434523,7.0787497,6.268234,1.3886951,-5.7317634,2.0757844,4.1138253,4.0355225"
Reboot Complete,Cyberdine Systems Corp.,Program State EP + Legowelt Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp/Cyberdine Systems Corp. - Program State EP + Legowelt Remix - 04 Reboot Complete.mp3,129.19921875,"-159.97623,70.81008,10.952482,46.44657,23.714964,24.212063,14.376873,14.245188,10.591588,10.992027,5.963059,6.895908,2.8677442,3.1796954,-0.33705482,2.015877,1.0416182,1.6771072,0.12582494,1.2888887"
Execute Command,Cyberdine Systems Corp.,Program State EP + Legowelt Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp/Cyberdine Systems Corp. - Program State EP + Legowelt Remix - 05 Execute Command.mp3,83.35433467741936,"-248.09613,129.09665,45.175705,32.502724,20.800634,14.210137,14.650853,11.728294,6.215712,10.399958,3.3973625,9.0584755,4.748036,6.058695,4.557909,2.6982582,2.9679778,3.4173915,2.0826843,4.1743217"
Cyber Attack,Cyberdine Systems Corp. (Alex Jann & DJ Haus),Cyber Attack EP + Solid Blake & Perko Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp. (Alex Jann & DJ Haus)/Cyberdine Systems Corp. (Alex Jann & DJ Haus) - Cyber Attack EP + Solid Blake & Perko Remix - 01 Cyber Attack.mp3,143.5546875,"-156.08524,67.94269,17.123533,16.500603,12.55523,17.836962,11.244872,17.02791,6.101072,9.582775,4.12207,7.0423985,3.2465193,5.391003,1.1125787,3.4848087,1.1776319,3.2893364,-0.86475134,5.000483"
Klonk,Cyberdine Systems Corp. (Alex Jann & DJ Haus),Cyber Attack EP + Solid Blake & Perko Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp. (Alex Jann & DJ Haus)/Cyberdine Systems Corp. (Alex Jann & DJ Haus) - Cyber Attack EP + Solid Blake & Perko Remix - 02 Klonk.mp3,129.19921875,"-220.20071,93.34817,34.718204,27.577955,17.11719,17.671244,8.508736,12.970198,7.715873,10.472442,9.057617,8.457913,4.521093,5.107947,5.4854083,7.8878336,5.3449507,7.481588,4.93678,6.7892365"
Funktion Generator,Cyberdine Systems Corp. (Alex Jann & DJ Haus),Cyber Attack EP + Solid Blake & Perko Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp. (Alex Jann & DJ Haus)/Cyberdine Systems Corp. (Alex Jann & DJ Haus) - Cyber Attack EP + Solid Blake & Perko Remix - 03 Funktion Generator.mp3,135.99917763157896,"-153.71812,63.428062,1.2842582,32.38963,11.971531,14.648671,7.017929,11.419915,1.7139715,11.73716,1.2358178,4.57719,1.2748718,4.780633,0.20129782,4.0805397,0.17574269,2.1163726,0.3013016,5.091549"
Re-Install,Cyberdine Systems Corp. (Alex Jann & DJ Haus),Cyber Attack EP + Solid Blake & Perko Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp. (Alex Jann & DJ Haus)/Cyberdine Systems Corp. (Alex Jann & DJ Haus) - Cyber Attack EP + Solid Blake & Perko Remix - 04 Re-Install.mp3,129.19921875,"-166.19223,42.361282,0.59689015,17.564745,3.4104621,24.898708,7.4409976,15.69752,6.372917,9.05174,-1.3159007,4.574354,-2.3579495,-0.820033,-3.4442062,-1.6511574,-6.696204,0.25509214,-5.9989185,-3.3965824"
Funktion Generator (Perko & Solid Blake Remix),Cyberdine Systems Corp. (Alex Jann & DJ Haus),Cyber Attack EP + Solid Blake & Perko Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Cyberdine Systems Corp. (Alex Jann & DJ Haus)/Cyberdine Systems Corp. (Alex Jann & DJ Haus) - Cyber Attack EP + Solid Blake & Perko Remix - 05 Funktion Generator (Perko & Solid Blake Remix).mp3,143.5546875,"-157.64359,74.08084,25.16123,10.477581,9.72697,11.929981,-0.97440153,5.901537,-1.4266552,1.7833503,-4.164578,2.5225747,-7.048762,0.093270026,-3.1788154,-2.5299113,-2.3805504,-1.9772344,-1.5640175,3.5509782"
Love This Party,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070/D3070 - Love This Party - 01 Love This Party.mp3,99.38401442307692,"-38.950962,82.12654,9.770148,31.402822,-5.199819,1.9194258,-8.436868,1.1627121,-3.4667141,2.3335702,-4.580151,2.5291424,-4.0895014,-0.8614957,-4.25724,0.01476975,-4.7636614,0.96758765,-4.2438755,0.25040296"
FORM,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070/D3070 - Love This Party - 02 FORM.mp3,123.046875,"-76.28447,63.02478,8.530489,44.839497,3.876983,10.782513,10.285834,11.528853,10.793437,5.3694596,1.6262048,0.2801718,-0.35721374,2.1797113,-1.4286876,7.4417996,1.1408511,6.5427785,-3.8978608,4.5044565"
Milky Way,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070/D3070 - Love This Party - 03 Milky Way.mp3,161.4990234375,"-82.574844,102.65055,8.339989,23.747248,-0.15140326,6.8428454,-6.60827,-6.8151326,-4.7468452,0.7745697,-1.1129977,-0.7038619,-12.047594,-2.9862092,-6.9584446,-0.6995128,2.4121318,3.8756454,-1.9768178,-1.0196544"
Fantasy,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070/D3070 - Love This Party - 04 Fantasy.mp3,99.38401442307692,"-102.064316,95.96373,15.931417,29.196405,28.32727,9.194338,20.846088,6.1822004,-0.749898,-0.13374689,-0.9036391,4.1306577,-3.4605527,3.3091125,-5.6346173,0.12270466,1.3915011,1.9951257,2.0405052,1.9803522"
Love This Party,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070 - Love This Party/D3070 - Love This Party - 01 Love This Party.mp3,99.38401442307692,"-38.950962,82.12654,9.770148,31.402822,-5.199819,1.9194258,-8.436868,1.1627121,-3.4667141,2.3335702,-4.580151,2.5291424,-4.0895014,-0.8614957,-4.25724,0.01476975,-4.7636614,0.96758765,-4.2438755,0.25040296"
FORM,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070 - Love This Party/D3070 - Love This Party - 02 FORM.mp3,123.046875,"-76.28447,63.02478,8.530489,44.839497,3.876983,10.782513,10.285834,11.528853,10.793437,5.3694596,1.6262048,0.2801718,-0.35721374,2.1797113,-1.4286876,7.4417996,1.1408511,6.5427785,-3.8978608,4.5044565"
Milky Way,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070 - Love This Party/D3070 - Love This Party - 03 Milky Way.mp3,161.4990234375,"-82.574844,102.65055,8.339989,23.747248,-0.15140326,6.8428454,-6.60827,-6.8151326,-4.7468452,0.7745697,-1.1129977,-0.7038619,-12.047594,-2.9862092,-6.9584446,-0.6995128,2.4121318,3.8756454,-1.9768178,-1.0196544"
Fantasy,D3070,Love This Party,2021,,Unknown to the Unknown,/mnt/d/UTTU/D3070 - Love This Party/D3070 - Love This Party - 04 Fantasy.mp3,99.38401442307692,"-102.064316,95.96373,15.931417,29.196405,28.32727,9.194338,20.846088,6.1822004,-0.749898,-0.13374689,-0.9036391,4.1306577,-3.4605527,3.3091125,-5.6346173,0.12270466,1.3915011,1.9951257,2.0405052,1.9803522"
After Effects,Daffy,After Effects,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy/Daffy - After Effects - 01 After Effects.mp3,86.1328125,"-125.48466,40.751293,4.5448866,12.688441,-0.99505687,10.5423355,-0.5140708,1.9612893,-2.7759817,4.4098516,0.37722164,2.1707628,-2.7559998,3.3699307,1.1085339,3.3980808,-3.0960965,-1.618649,-3.033464,1.2801528"
Inside,Daffy,After Effects,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy/Daffy - After Effects - 02 Inside.mp3,135.99917763157896,"-95.817764,19.641575,16.695944,22.03689,10.246599,16.793005,6.5573087,6.0315633,-1.3774909,3.273418,-3.4194767,2.4885328,-3.880912,1.5199579,-3.0346,3.6078014,-0.7060552,2.5832586,-3.865982,1.6728079"
Light Footed,Daffy,After Effects,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy/Daffy - After Effects - 03 Light Footed.mp3,135.99917763157896,"-78.005554,75.84082,17.740042,19.577782,11.522332,7.179558,1.6484842,1.41739,-5.194477,-1.1469369,-7.657641,-0.9942911,-8.150649,-4.6510057,-5.495662,-2.0194757,-7.0437913,-2.876335,-7.199368,-2.2573814"
Can't Stop Now,Daffy,Can't Stop Now,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy/Daffy - Can't Stop Now - 01 Can't Stop Now.mp3,135.99917763157896,"-55.785927,18.060366,-11.154791,17.391157,2.2447948,18.875834,4.7324524,12.212551,2.7018394,10.067677,1.3492049,7.4282722,-0.43249136,3.495349,-0.8544867,3.4574382,-2.328431,2.173976,-2.2646434,5.026815"
Hydrated,Daffy,Can't Stop Now,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy/Daffy - Can't Stop Now - 02 Hydrated.mp3,135.99917763157896,"-42.014175,22.917892,-7.9100866,17.615269,-5.952916,11.393561,-0.77641386,10.338709,4.2756376,9.397832,3.4729736,5.1221366,-3.3367984,-0.681438,-1.3411554,2.0915904,-1.8988143,5.6039667,0.4548343,4.012475"
Lost In Your Eyes,Daffy,Can't Stop Now,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy/Daffy - Can't Stop Now - 03 Lost In Your Eyes.mp3,135.99917763157896,"-57.764862,13.343938,-12.654922,15.638323,-7.0592866,12.082779,-2.1631598,9.948206,-1.3574262,4.026745,-2.0420058,5.395093,-2.1517978,3.0606062,1.0256453,6.289609,-0.93733174,6.397185,-1.8144345,-1.9621563"
Wicked & Wild (Ruff Style Remix),Daffy x Riko Dan,Wicked & Wild Remixes,2023,,Unknown to the Unknown,/mnt/d/UTTU/Daffy x Riko Dan/Daffy x Riko Dan - Wicked & Wild Remixes - 03 Wicked & Wild (Ruff Style Remix).mp3,66.25600961538461,"-74.684906,65.592255,0.19550765,19.848003,4.62952,16.113964,4.755234,7.86096,0.016673466,10.692182,3.2515018,10.401949,2.4031987,6.8389444,1.096842,4.4547663,-1.6372977,3.4483166,3.244019,5.2512174"
It's The E,Dajusch,Dance Trax Vol.55,2023,,Unknown to the Unknown,/mnt/d/UTTU/Dajusch/Dajusch - Dance Trax Vol.55 - 01 It's The E.mp3,112.34714673913044,"-93.28232,52.59085,58.34343,36.94689,19.762196,23.119684,6.3119254,11.627268,3.4309828,7.794994,0.5703197,6.505761,0.9599014,4.3329396,1.662467,7.1094346,0.5208582,2.2243407,1.3777887,6.0768356"
Dance Like A Villain,Dajusch,Dance Trax Vol.55,2023,,Unknown to the Unknown,/mnt/d/UTTU/Dajusch/Dajusch - Dance Trax Vol.55 - 02 Dance Like A Villain.mp3,143.5546875,"-88.20629,76.18435,21.73307,25.984587,10.973279,20.603094,12.397836,14.749639,6.0128016,11.229532,5.6682487,8.275699,2.3454773,4.7759414,2.3108878,5.103041,-1.2199192,3.087752,0.32371104,2.414773"
The Rhythm My Love,Dajusch,Dance Trax Vol.55,2023,,Unknown to the Unknown,/mnt/d/UTTU/Dajusch/Dajusch - Dance Trax Vol.55 - 03 The Rhythm My Love.mp3,135.99917763157896,"-95.584435,63.66286,31.036118,26.499832,17.997047,20.006893,3.3769078,9.504164,2.273796,5.860525,-1.3111682,8.631068,2.3047984,3.8831532,-3.54199,2.5331895,-0.13883455,3.235966,-3.3704515,0.017466348"
It's The E,Dajusch,Dance Trax Vol.55,2023,,Unknown to the Unknown,/mnt/d/UTTU/Dajusch - Dance Trax Vol.55/Dajusch - Dance Trax Vol.55 - 01 It's The E.mp3,112.34714673913044,"-93.28232,52.59085,58.34343,36.94689,19.762196,23.119684,6.3119254,11.627268,3.4309828,7.794994,0.5703197,6.505761,0.9599014,4.3329396,1.662467,7.1094346,0.5208582,2.2243407,1.3777887,6.0768356"
Dance Like A Villain,Dajusch,Dance Trax Vol.55,2023,,Unknown to the Unknown,/mnt/d/UTTU/Dajusch - Dance Trax Vol.55/Dajusch - Dance Trax Vol.55 - 02 Dance Like A Villain.mp3,143.5546875,"-88.20629,76.18435,21.73307,25.984587,10.973279,20.603094,12.397836,14.749639,6.0128016,11.229532,5.6682487,8.275699,2.3454773,4.7759414,2.3108878,5.103041,-1.2199192,3.087752,0.32371104,2.414773"
The Rhythm My Love,Dajusch,Dance Trax Vol.55,2023,,Unknown to the Unknown,/mnt/d/UTTU/Dajusch - Dance Trax Vol.55/Dajusch - Dance Trax Vol.55 - 03 The Rhythm My Love.mp3,135.99917763157896,"-95.584435,63.66286,31.036118,26.499832,17.997047,20.006893,3.3769078,9.504164,2.273796,5.860525,-1.3111682,8.631068,2.3047984,3.8831532,-3.54199,2.5331895,-0.13883455,3.235966,-3.3704515,0.017466348"
Druids Dream,Dan Curtin,Druids Dream,2020,,Unknown to the Unknown,/mnt/d/UTTU/Dan Curtin/Dan Curtin - Druids Dream - 01 Druids Dream.mp3,107.666015625,"-56.347763,72.30651,11.566255,20.992107,0.29598397,21.635311,10.150218,13.313744,4.3746715,7.3664527,3.6581006,4.9878144,-1.8595659,2.0946956,-1.6075274,5.8576694,-3.9095218,1.65492,-1.1575216,3.0285933"
Flashback,Dan Curtin,Druids Dream,2020,,Unknown to the Unknown,/mnt/d/UTTU/Dan Curtin/Dan Curtin - Druids Dream - 02 Flashback.mp3,129.19921875,"-30.00094,54.493248,2.8522077,29.009981,5.3805833,17.112566,7.0075264,13.26777,6.5691957,10.144773,5.466931,8.325884,2.8534083,7.6043386,4.3678894,8.893642,5.0422544,8.242518,1.2501726,4.5789557"
Beamies World,DART,Beamies World,2022,,Unknown to the Unknown,/mnt/d/UTTU/DART/DART - Beamies World - 01 Beamies World.mp3,135.99917763157896,"-123.68775,91.121735,18.540512,-0.56876147,2.2195542,5.9854016,1.0092664,10.383404,13.206126,13.974053,5.601606,6.3068867,-2.4974382,2.6033301,0.5552602,4.7309847,-0.91041076,5.9675193,4.3782716,12.752248"
Sponge,DART,Beamies World,2022,,Unknown to the Unknown,/mnt/d/UTTU/DART/DART - Beamies World - 02 Sponge.mp3,135.99917763157896,"-164.71532,113.51332,40.23192,20.561077,16.629116,16.974714,5.600052,6.950747,-0.2527314,0.7433928,-4.945639,-1.4661592,-4.5744524,2.8905058,-5.5191946,4.9643693,-4.8436966,2.4276464,2.8844178,4.3309293"
Jetfoil,DART,Jetfoil,2021,,Unknown to the Unknown,/mnt/d/UTTU/DART/DART - Jetfoil - 01 Jetfoil.mp3,123.046875,"-128.92398,68.602196,18.772264,42.588253,6.8612638,17.2592,4.218293,7.8000956,2.3272598,3.4703014,-1.8096615,7.1856766,2.5405235,8.702597,3.3629658,2.4692838,0.103848375,3.6885955,-0.014859381,0.78915346"
Endless Sky,DART,Jetfoil,2021,,Unknown to the Unknown,/mnt/d/UTTU/DART/DART - Jetfoil - 02 Endless Sky.mp3,89.10290948275862,"-86.79463,26.508053,21.508173,9.505131,-4.729689,13.381738,-0.9901699,4.5584736,-1.7795335,7.3404875,4.920458,8.448171,7.296487,8.758466,2.9078147,8.413542,-1.906651,4.004027,-2.5321355,4.21317"
Moons,DART,Jetfoil,2021,,Unknown to the Unknown,/mnt/d/UTTU/DART/DART - Jetfoil - 03 Moons.mp3,89.10290948275862,"-136.3401,44.704796,36.959408,14.51806,-0.683316,5.9177647,0.29947206,-1.0358393,-7.731094,-2.2555337,-7.214976,-0.5660017,-7.835024,3.1950011,-7.2089334,4.4271293,0.8543704,10.820299,2.3456838,9.944099"
Beyond Low Earth Orbit,DAWL,Beyond Low Earth Orbit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DAWL/DAWL - Beyond Low Earth Orbit - 01 Beyond Low Earth Orbit.mp3,129.19921875,"-156.65392,62.335327,52.16144,22.050089,17.970463,18.130798,8.523924,14.773735,3.6922278,8.556563,-3.1043859,3.4750516,2.7285728,11.289783,1.1586807,2.5734746,1.4507499,3.1697783,4.105797,8.047641"
Hysteria,DAWL,Beyond Low Earth Orbit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DAWL/DAWL - Beyond Low Earth Orbit - 02 Hysteria.mp3,83.35433467741936,"-119.34021,42.017593,20.58143,21.70653,6.7914352,21.15362,9.124913,14.1748905,3.3954887,8.560911,2.6819124,9.6104965,4.2853465,8.524111,2.8413463,4.385177,-0.13907228,4.4385276,-1.6618323,6.375258"
Axis,DAWL,Beyond Low Earth Orbit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DAWL/DAWL - Beyond Low Earth Orbit - 03 Axis.mp3,129.19921875,"-92.890564,50.37616,35.13397,4.41448,5.0029063,13.018831,-0.6931813,16.339375,0.41776586,13.538062,1.8264201,7.7991858,0.8593081,11.452499,5.7794814,4.4582863,3.054898,3.8131995,-1.4329848,1.0283133"
ESP,DAWL,Beyond Low Earth Orbit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DAWL/DAWL - Beyond Low Earth Orbit - 04 ESP.mp3,129.19921875,"-107.251366,56.870464,48.514973,27.35924,11.060372,10.426168,-5.280021,6.0641484,-3.195432,1.4368032,-7.0630097,0.6924186,-0.3568266,3.1475468,-0.52052575,2.4349983,0.92297554,3.1047544,-0.20938654,5.0686755"
Pocket Universe,DAWL,Beyond Low Earth Orbit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DAWL/DAWL - Beyond Low Earth Orbit - 05 Pocket Universe.mp3,129.19921875,"-83.8925,73.17274,40.51298,12.703606,12.649573,14.3534775,-0.44382262,10.322307,0.17796198,6.549597,0.8614693,5.967529,3.9413526,6.5365834,6.148376,6.2978654,-0.80727696,5.797539,3.6197252,6.747147"
Ultra Feeling (Vocal Mix),DAWS,Ultra Feeling,2023,,Unknown to the Unknown,/mnt/d/UTTU/DAWS/DAWS - Ultra Feeling - 01 Ultra Feeling (Vocal Mix).mp3,129.19921875,"-159.55751,99.20342,18.323002,23.270882,11.029155,4.3907366,-2.0314062,3.7050464,-0.32099247,4.9189267,-2.0105495,2.077408,-2.1448278,1.420174,-4.366443,0.18201867,-4.361026,-0.57726026,-3.1582887,0.7643362"
Ultra Feeling (Original Mix),DAWS,Ultra Feeling,2023,,Unknown to the Unknown,/mnt/d/UTTU/DAWS/DAWS - Ultra Feeling - 02 Ultra Feeling (Original Mix).mp3,129.19921875,"-171.21904,94.18202,23.80841,29.329426,11.411584,8.243406,-1.788215,2.735398,0.22081096,4.9399242,-0.42108157,4.5301433,-1.1941276,1.6368505,-4.7709303,0.86707604,-2.5418992,0.89301044,-2.1921225,0.23231208"
Alien Voices,DAWS,Ultra Feeling,2023,,Unknown to the Unknown,/mnt/d/UTTU/DAWS/DAWS - Ultra Feeling - 03 Alien Voices.mp3,129.19921875,"-121.4234,72.80202,8.874923,19.27208,10.086608,9.315033,-0.38994476,4.4167366,-2.6788194,3.219007,-4.2878194,-1.2977089,-5.0891714,-1.9638304,-1.7125406,0.04916624,-3.3330019,0.27490744,-4.003201,-1.4940643"
Morning Light,DAWS,Ultra Feeling,2023,,Unknown to the Unknown,/mnt/d/UTTU/DAWS/DAWS - Ultra Feeling - 04 Morning Light.mp3,123.046875,"-137.76176,57.073826,30.515999,36.40548,0.57960653,18.395443,2.3480594,7.6194158,-2.6258216,5.689991,-3.5706425,2.00173,-0.9716928,4.3061767,-0.033994157,3.5187395,-2.7195656,2.8646207,-0.015322506,4.2453046"
Leisure Complex,Daze,Leisure Complex,2016,,Unknown to the Unknown,/mnt/d/UTTU/Daze/Daze - Leisure Complex - 01 Leisure Complex.mp3,99.38401442307692,"-66.37895,82.09748,18.471334,28.610605,10.158983,16.50303,-0.3547027,10.333534,3.9722126,3.4944007,-4.3488207,2.7721982,-4.3790164,-1.9747515,-2.9592617,1.8311734,-2.914877,-0.50096387,-4.981538,1.5434719"
Centuries Later,Daze,Leisure Complex,2016,,Unknown to the Unknown,/mnt/d/UTTU/Daze/Daze - Leisure Complex - 02 Centuries Later.mp3,107.666015625,"-52.949333,52.62625,-2.0904076,43.440353,-11.675028,25.34459,-11.881774,17.955383,-0.7540114,11.672846,2.8157413,16.63456,7.4910026,12.524865,5.5467577,7.9762745,-0.843703,5.419139,-1.4404348,5.3234324"
XX,Daze,Leisure Complex,2016,,Unknown to the Unknown,/mnt/d/UTTU/Daze/Daze - Leisure Complex - 03 XX.mp3,151.99908088235293,"-64.13544,73.32793,45.874954,21.37977,19.727732,21.721357,14.5317,9.347629,-8.792343,1.5114535,5.8824277,8.642481,-4.2043667,10.166346,4.854154,2.9299593,-3.3540642,10.768949,-6.7824235,5.840727"
All The Freqs,Daze,Leisure Complex,2016,,Unknown to the Unknown,/mnt/d/UTTU/Daze/Daze - Leisure Complex - 04 All The Freqs.mp3,123.046875,"-182.37392,81.19986,29.667065,31.265884,8.728363,14.654361,8.692315,18.01674,-1.5033658,18.582685,-0.6760349,1.422913,1.6766586,0.94799674,2.9618008,-1.5442046,-1.1718664,4.902263,11.044103,8.048284"
Insert Track Title (Person Of Interest Remix),De Sluwe Vos,Insert Track Title + Person Of Interest Remix,2016,,Unknown to the Unknown,/mnt/d/UTTU/De Sluwe Vos/De Sluwe Vos - Insert Track Title + Person Of Interest Remix - 01 Insert Track Title (Person Of Interest Remix).mp3,123.046875,"-52.146557,68.580345,-19.75042,43.75431,-2.5211039,28.145847,-5.3159056,24.46732,3.117191,13.119121,1.4852924,10.7027645,3.4444294,7.327158,3.0090911,8.533391,4.9605,3.764417,1.4581741,0.15080298"
Basement Work-Out III,De Sluwe Vos,Insert Track Title + Person Of Interest Remix,2016,,Unknown to the Unknown,/mnt/d/UTTU/De Sluwe Vos/De Sluwe Vos - Insert Track Title + Person Of Interest Remix - 02 Basement Work-Out III.mp3,129.19921875,"-61.40077,78.69666,6.111278,24.923584,1.2930223,22.866236,9.434407,15.579712,1.7015345,12.381338,2.7985685,9.500874,1.3255813,3.5498025,-0.0658835,2.2997334,-1.8943448,2.4049032,1.125993,3.0633142"
Insert Track Title,De Sluwe Vos,Insert Track Title + Person Of Interest Remix,2016,,Unknown to the Unknown,/mnt/d/UTTU/De Sluwe Vos/De Sluwe Vos - Insert Track Title + Person Of Interest Remix - 03 Insert Track Title.mp3,123.046875,"-85.19547,67.21629,13.875722,27.578999,11.11149,21.704079,5.2047725,11.446294,0.35928833,10.53122,0.9107934,5.564373,2.681897,8.626418,6.7767425,11.549597,4.4066534,5.4554014,-0.62517166,0.877947"
RU4me,Deadboy,White Light Gemini,2016,,Unknown to the Unknown,/mnt/d/UTTU/Deadboy/Deadboy - White Light Gemini - 01 RU4me.mp3,129.19921875,"-98.94376,113.52686,-38.77628,56.17703,14.186118,13.88243,5.489516,5.917913,-2.8784196,-1.0127436,2.8847554,3.9078007,-1.6368006,0.5863891,-2.4682434,-0.33125374,-2.7882104,3.736899,1.4484805,1.6020422"
White Light Gemini,Deadboy,White Light Gemini,2016,,Unknown to the Unknown,/mnt/d/UTTU/Deadboy/Deadboy - White Light Gemini - 02 White Light Gemini.mp3,67.99958881578948,"-92.3306,77.61623,-8.52869,24.992786,-13.47232,-1.4916991,-9.672089,-5.90518,-13.108266,4.934847,-16.002253,-1.7278893,-3.1679163,-4.31277,-4.5708666,0.42639852,-5.596889,2.6714027,1.4993885,4.016792"
So Cold,"Deadboy, Al Wootton",Psychic Hotline,2018,,Unknown to the Unknown,"/mnt/d/UTTU/Deadboy, Al Wootton/Deadboy, Al Wootton - Psychic Hotline - 01 So Cold.mp3",63.02400914634146,"-161.25291,130.6019,11.030136,19.597685,-6.166604,9.285932,-9.614322,0.6009787,-5.3954735,0.52093554,-7.2231464,-4.5717545,-9.323039,-2.898687,-4.7991977,2.8690789,1.1943499,5.1128154,-0.59598976,-0.3332476"
No More,"Deadboy, Al Wootton",Psychic Hotline,2018,,Unknown to the Unknown,"/mnt/d/UTTU/Deadboy, Al Wootton/Deadboy, Al Wootton - Psychic Hotline - 02 No More.mp3",123.046875,"-163.9659,158.07947,-16.102856,24.943394,3.62292,4.5963445,5.715709,7.103264,-1.3857175,2.7606525,4.8662825,-0.006807047,-4.4053464,-4.405482,-5.966268,-2.431779,-2.0388267,0.2299103,2.1401846,4.005605"
Silicon,"Deadboy, Al Wootton",Psychic Hotline,2018,,Unknown to the Unknown,"/mnt/d/UTTU/Deadboy, Al Wootton/Deadboy, Al Wootton - Psychic Hotline - 03 Silicon.mp3",129.19921875,"-146.34386,101.36181,9.370241,14.3689785,-12.3051815,3.071486,-6.62562,-3.978909,-0.32491854,0.8883765,3.3628757,5.193969,-0.16459014,0.39327067,0.3185312,6.8583384,8.051433,6.0486712,-0.5892851,7.0028167"
Ryuichi,"Deadboy, Al Wootton",Psychic Hotline,2018,,Unknown to the Unknown,"/mnt/d/UTTU/Deadboy, Al Wootton/Deadboy, Al Wootton - Psychic Hotline - 04 Ryuichi.mp3",95.703125,"-181.29497,114.43447,31.155056,13.574441,1.5261006,14.352043,3.4917953,7.683639,-0.9651006,4.551692,3.234246,2.7873938,4.6845765,4.068082,0.089492686,2.4540353,0.8443626,5.7370543,2.8531258,2.1583705"
Dervish,"Deadboy, Al Wootton",Psychic Hotline,2018,,Unknown to the Unknown,"/mnt/d/UTTU/Deadboy, Al Wootton/Deadboy, Al Wootton - Psychic Hotline - 05 Dervish.mp3",143.5546875,"-197.31621,138.12479,10.775809,48.22063,21.201668,21.215012,8.803288,9.463069,3.8771467,4.007642,4.101363,3.3426077,1.2585896,2.989904,0.4654454,-0.9250355,-1.5869164,-0.13170265,-2.0557597,-2.4345422"
Venus & Mercury,"Deadboy, Al Wootton",Psychic Hotline,2018,,Unknown to the Unknown,"/mnt/d/UTTU/Deadboy, Al Wootton/Deadboy, Al Wootton - Psychic Hotline - 06 Venus & Mercury.mp3",123.046875,"-224.41864,178.31302,-2.8816946,12.8789215,5.0346584,2.625611,-4.67527,-7.4728765,-9.3876,-9.247364,-10.569541,-9.9682665,-7.474106,-6.8722525,-7.0547094,-7.9131937,-9.803291,-6.1120567,-5.9975567,-6.517074"
Make It Through,Deckstar,Make It Through,2013,,Unknown to the Unknown,/mnt/d/UTTU/Deckstar/Deckstar - Make It Through - 01 Make It Through.mp3,135.99917763157896,"-116.76354,53.43919,17.282925,15.974106,5.243468,14.332169,9.857109,6.1327505,2.2335873,9.433669,-1.1593555,4.794067,-1.7351896,-0.31241834,1.1255844,8.757887,1.6991944,8.317709,3.9091425,6.3209753"
Make It Through (Checan Remix),Deckstar,Make It Through,2013,,Unknown to the Unknown,/mnt/d/UTTU/Deckstar/Deckstar - Make It Through - 02 Make It Through (Checan Remix).mp3,66.25600961538461,"-65.87504,38.590137,9.085154,21.6628,1.4080501,17.777765,5.5679197,4.265058,-1.2219477,5.3310566,-3.3994462,6.0336227,-1.5257286,-0.9351292,-3.4968057,3.2623906,0.059079584,6.034116,0.97990525,1.648454"
White Label,Denham Audio,Dance Trax Vol. 35,2022,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 35 - 01 White Label.mp3,129.19921875,"-55.652287,49.956074,13.0215845,55.22749,5.6753855,28.576752,-0.11907321,14.238158,-0.0806891,9.587462,-0.8076738,6.0312376,-2.055258,5.9532194,-2.152488,6.569884,-1.3638722,5.39639,-1.615378,1.6694686"
Psyche Of A Raver,Denham Audio,Dance Trax Vol. 35,2022,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 35 - 02 Psyche Of A Raver.mp3,135.99917763157896,"-94.64791,83.86708,11.952047,25.21364,-3.2940135,6.365396,-7.5799203,8.559335,-1.7642303,8.78687,-4.283105,5.4159813,-5.090519,1.749018,-1.5385512,2.5077605,1.4540956,-1.805881,-0.14942513,-2.5210643"
ESP,Denham Audio,Dance Trax Vol. 35,2022,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 35 - 03 ESP.mp3,135.99917763157896,"-47.670807,54.363567,-2.8002083,29.91975,-0.3457046,4.910142,-2.021775,6.448295,-3.7603977,8.027319,-3.8229513,0.7041683,-2.8567827,4.242931,-3.4806154,3.173559,-3.1901717,-0.032260884,-3.7419906,-0.26821992"
Psyche Of A Raver (Mani Festo Remix),Denham Audio,Dance Trax Vol. 35,2022,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 35 - 04 Psyche Of A Raver (Mani Festo Remix).mp3,92.28515625,"-120.59226,72.85087,1.7507145,12.995301,-0.46026024,8.975933,0.2095808,8.784638,1.0187641,9.049363,-1.8116989,3.8778565,-4.752014,2.4356048,-0.9127381,4.478774,-0.052917324,0.50655514,-0.8390825,-0.70058185"
Define Consciousness,Denham Audio,Dance Trax Vol. 50,2023,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 50 - 01 Define Consciousness.mp3,107.666015625,"-72.13138,86.772736,11.079059,34.174446,-4.2063317,15.696642,-1.9727135,7.345432,-3.0674202,-0.85131216,-4.5355067,3.1944852,1.0151223,2.9854672,-1.6310482,1.9518921,-5.203138,-1.9878626,-1.9361696,1.8065013"
On Site,Denham Audio,Dance Trax Vol. 50,2023,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 50 - 02 On Site.mp3,151.99908088235293,"-99.554146,83.34466,19.329361,27.994408,9.288159,16.673235,6.424791,15.823893,4.215947,7.840847,2.7564025,10.262665,3.277834,6.5803566,-1.9998944,1.7914625,-1.8507042,1.8537154,-1.1244553,6.609601"
Do You Sell Hardcore?,Denham Audio,Dance Trax Vol. 50,2023,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 50 - 03 Do You Sell Hardcore-.mp3,135.99917763157896,"-68.49922,50.50204,-4.0667996,25.983028,14.687892,11.043413,1.0490848,12.466889,-1.8502452,4.296612,-2.6267464,4.05784,-4.409454,2.4549017,-5.088508,0.49156883,-5.039923,0.40400916,-6.4105725,-0.434623"
Do You Sell Hardcore? (Triple Point Remix),Denham Audio,Dance Trax Vol. 50,2023,,Unknown to the Unknown,/mnt/d/UTTU/Denham Audio/Denham Audio - Dance Trax Vol. 50 - 04 Do You Sell Hardcore- (Triple Point Remix).mp3,67.99958881578948,"-145.81987,78.3646,-1.368859,17.218054,7.42757,15.84308,4.403476,8.233805,4.9640923,16.177284,17.60061,16.194794,3.716846,-3.6253798,-6.231607,-1.5704271,-4.5584,-4.473524,-3.6664574,6.744039"
Infinite Strikes,Desert Sound Colony,Infinite Strikes EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Desert Sound Colony/Desert Sound Colony - Infinite Strikes EP - 01 Infinite Strikes.mp3,129.19921875,"-68.47545,79.17936,-3.206688,26.66265,-3.118373,14.391784,-1.4237275,8.115689,-3.049623,5.855966,-3.8025787,-1.9632192,-6.241358,0.4342593,-4.89724,-0.34524572,-3.5217795,2.290715,-3.2579267,1.2998222"
Extreme Meltdown,Desert Sound Colony,Infinite Strikes EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Desert Sound Colony/Desert Sound Colony - Infinite Strikes EP - 02 Extreme Meltdown.mp3,117.45383522727273,"-92.18333,66.1929,-12.918879,24.822119,3.2547765,9.651616,0.8541512,6.966898,-1.9639635,4.822895,-1.946749,3.7777286,-3.4786878,1.5078107,-4.139314,2.3577316,-2.0991943,1.9776089,-2.0845387,2.1109912"
Another Fish In The Pan,Desert Sound Colony,Infinite Strikes EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Desert Sound Colony/Desert Sound Colony - Infinite Strikes EP - 03 Another Fish In The Pan.mp3,135.99917763157896,"-41.847847,63.964695,-10.869969,17.036821,-5.2879295,2.9247246,-5.1245623,3.8178573,-1.9092549,1.4260774,-4.3488936,-1.9320668,-5.5928016,-0.25635508,-4.6692114,0.23158994,-2.4697318,2.456565,-1.5022423,0.7164656"
Big Jason & The Fruit Fly,Desert Sound Colony,Infinite Strikes EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Desert Sound Colony/Desert Sound Colony - Infinite Strikes EP - 04 Big Jason & The Fruit Fly.mp3,117.45383522727273,"-153.09286,97.71702,-22.163647,20.935314,0.62102634,19.28669,-8.631377,17.106245,1.4495692,4.848422,0.6167282,3.0217502,0.7537314,3.5480456,-0.25105572,0.23418713,-0.0744499,-0.788831,0.6986009,-1.308504"
Paradox Den Haag,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 01 Paradox Den Haag.mp3,123.046875,"-47.449413,83.65767,-18.84833,66.044426,-7.1101813,28.717434,7.852755,14.461992,2.048048,11.005318,3.2235777,8.712332,1.2827653,3.0620184,0.6767948,5.0892205,0.6300917,3.26293,0.70739263,2.9612238"
Winkelcentrium Babylon,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 02 Winkelcentrium Babylon.mp3,95.703125,"-89.92334,121.01984,-27.080322,45.817883,4.6704593,11.146553,3.1327212,7.466552,2.370127,6.896486,1.5803685,3.6532989,0.07610023,0.7542094,-1.6105586,3.364784,-2.4471214,0.40795323,-3.8796282,-2.9848554"
Unit Stijl,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 03 Unit Stijl.mp3,129.19921875,"-82.63111,119.32409,-18.61256,36.39632,-9.218618,17.869085,7.6912475,13.432136,5.2267184,13.419062,5.659033,7.5442605,1.2731737,3.4096584,1.318713,3.9403784,-0.23488614,2.144662,-1.9484464,-0.21376094"
Een Akai uit de Vogelwijk,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 04 Een Akai uit de Vogelwijk.mp3,123.046875,"-117.262405,103.328026,3.4571,58.89417,11.676207,15.713111,7.4020195,12.07746,-1.0119836,6.3760095,4.411542,7.6940665,-2.1648545,3.833793,2.1017313,6.6401515,-2.8649604,-1.7101984,-3.314335,-2.6269536"
Pompy The Robodoll,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 05 Pompy The Robodoll.mp3,129.19921875,"-101.89607,104.09349,-21.706554,37.070286,8.994908,25.27306,7.668435,16.523771,5.3645477,8.489947,-0.7892459,13.989755,5.647485,2.8644495,-1.2326204,6.3571815,-0.34922248,-1.1245062,-3.1316466,2.427235"
Lekkere D&R Midsweepeer,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 06 Lekkere D&R Midsweepeer.mp3,135.99917763157896,"-100.19211,99.04964,-3.0855148,34.226173,1.0503738,26.76109,-1.8932108,14.918434,7.490518,9.270559,6.5838675,9.455011,3.2985284,9.334135,3.2813962,6.390345,3.7914991,3.441654,1.9284827,0.42484096"
De Rode Olifant,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 07 De Rode Olifant.mp3,161.4990234375,"-74.90477,77.0098,8.152313,41.801285,3.3535802,31.835516,12.772848,8.347113,6.912924,9.480334,10.767554,8.644344,3.3898394,1.5012758,1.7017868,6.95975,0.94557786,1.5782291,0.46676353,0.6885254"
Uilennest,Dickie Smabers,Jammed From The Fist,2021,,Unknown to the Unknown,/mnt/d/UTTU/Dickie Smabers/Dickie Smabers - Jammed From The Fist - 08 Uilennest.mp3,129.19921875,"-103.892235,92.30037,-5.386679,46.131607,18.246006,16.099045,18.390509,20.38168,1.2247815,12.82305,3.2390058,6.2397985,5.2986364,7.1608987,2.5981915,9.141083,3.334701,1.6214782,1.8993905,5.5571065"
UFOLO-FI,DJ Aquatraxx,The Underrated Tascam Archives,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Aquatraxx/DJ Aquatraxx - The Underrated Tascam Archives - 01 UFOLO-FI.mp3,135.99917763157896,"-57.75914,98.21049,-8.205937,8.095696,-5.742847,3.997583,-4.7389984,4.618843,-7.964432,1.212473,-2.3103113,-0.064611785,-1.3738694,2.0091293,-2.1753442,0.011413933,-5.6613975,-3.8019953,0.72872573,-4.614265"
Chamán Mixx,DJ Aquatraxx,The Underrated Tascam Archives,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Aquatraxx/DJ Aquatraxx - The Underrated Tascam Archives - 02 Chamán Mixx.mp3,83.35433467741936,"-20.120192,93.19309,-6.3031716,15.414878,0.5601437,7.457398,-1.9888024,3.756076,-0.9186334,3.421113,-3.3045402,6.2893424,-0.4388894,4.6533146,-2.4741654,2.578438,-2.8042152,2.0461936,-3.2580302,0.16519876"
Liquid Of The Future,DJ Aquatraxx,The Underrated Tascam Archives,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Aquatraxx/DJ Aquatraxx - The Underrated Tascam Archives - 03 Liquid Of The Future.mp3,129.19921875,"-36.366974,77.40228,7.046371,15.78375,8.30375,16.273846,4.9300394,8.892545,5.106956,10.120368,6.2441134,7.788653,3.027652,9.743092,3.8222525,7.105057,1.7501916,4.817595,1.4934691,2.5597572"
Folk From Arizona,DJ Aquatraxx,The Underrated Tascam Archives,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Aquatraxx/DJ Aquatraxx - The Underrated Tascam Archives - 04 Folk From Arizona.mp3,123.046875,"-117.719284,103.453575,21.584518,18.914675,0.8101846,2.016679,-4.9475617,-0.26704055,-8.560502,0.64626956,-1.6744014,0.19680694,-1.3351588,4.421118,0.75866085,2.3071883,-1.0006387,4.5381656,1.4501859,0.73874635"
Aquatica,DJ Aquatraxx,The Underrated Tascam Archives,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Aquatraxx/DJ Aquatraxx - The Underrated Tascam Archives - 05 Aquatica.mp3,135.99917763157896,"-24.459467,109.271805,-20.964773,2.7201526,-7.9742427,0.56165636,-12.281277,-0.57991755,-10.225376,-1.9864974,-3.4295318,2.9129183,0.8180666,3.4527273,-2.8683996,-2.245419,-2.7960582,1.5362312,2.5361922,-0.8589094"
Jerkin' Houz (Catz 'n Dogz Remix),DJ Deeon & DJ Haus,Jerkin' Houz - Catz 'n Dogz Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Deeon & DJ Haus/DJ Deeon & DJ Haus - Jerkin' Houz - Catz 'n Dogz Remix - 01 Jerkin' Houz (Catz 'n Dogz Remix).mp3,129.19921875,"-62.30315,46.246304,23.829733,21.21125,6.0977964,21.199476,5.597564,8.619441,1.4778903,9.797396,1.6761339,7.5345025,0.91169477,3.7690496,-0.51839626,3.4387085,-6.229381,-1.6735487,-3.2194514,3.5646265"
Flange Attack,DJ Haus,Alien Acid,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Alien Acid - 01 Flange Attack.mp3,99.38401442307692,"-66.47401,46.261246,13.191379,10.465346,3.852446,12.801459,1.816965,6.461762,1.0760876,7.81227,-0.4127835,1.5175273,-1.7201246,1.8014237,0.18264303,3.7113698,-3.3620315,-0.789377,-3.8386517,0.67539275"
Alien Acid,DJ Haus,Alien Acid,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Alien Acid - 02 Alien Acid.mp3,129.19921875,"-124.24073,48.477932,40.450813,33.637806,8.433441,22.081902,0.33091578,21.791882,1.4149178,3.53975,7.368846,5.6045547,1.9292828,8.182599,-9.257306,2.6622667,-9.4029665,-7.116551,-4.3806524,-1.5379225"
All The Feels,DJ Haus,All The Feels,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - All The Feels - 01 All The Feels.mp3,123.046875,"-159.37321,51.17265,20.21469,47.351227,18.549694,7.941223,-3.067427,5.1683464,-7.121201,0.6346174,-4.819349,0.96995074,-4.652163,2.1437185,-0.3642113,3.0188909,-1.6436949,3.8421555,1.0335599,6.786797"
Comin On,DJ Haus,Comin On / When U Look At,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Comin On - When U Look At - 01 Comin On.mp3,123.046875,"-111.66288,58.642097,-3.790932,36.244877,7.783558,16.549068,-2.5219438,5.656773,-2.2576764,4.675127,-2.0125673,1.8339585,-2.8355844,3.723522,0.16707373,1.7475933,0.17599048,1.9549966,1.5801688,3.4179523"
When U Look At,DJ Haus,Comin On / When U Look At,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Comin On - When U Look At - 02 When U Look At.mp3,123.046875,"-102.663315,70.7624,4.363291,11.334344,7.1661243,22.21899,12.884132,12.471959,6.021196,7.4411488,-3.3609025,1.3133745,0.18468165,5.095567,6.0590825,6.832071,-3.2914839,1.7875751,3.401002,5.180711"
Bleep Bots,DJ Haus,Data Dump,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump - 01 Bleep Bots.mp3,83.35433467741936,"-95.88478,66.93461,41.77336,19.945522,6.538888,15.37138,10.842719,10.496675,3.3139994,6.0690117,5.099303,5.4218435,-1.1875939,1.8649014,-1.5017871,0.20421761,-0.336595,1.5394914,-1.7043544,3.7916784"
Catch Your Breath,DJ Haus,Data Dump,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump - 02 Catch Your Breath.mp3,129.19921875,"-86.41627,43.997173,2.6399968,25.823376,11.9665,10.927208,7.005734,11.17055,1.8544453,7.4836555,3.638922,10.625041,-1.8150725,4.438372,4.595001,3.9369755,-1.1624666,5.100735,0.72023,-0.31334883"
47 Street,DJ Haus,Data Dump,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump - 03 47 Street.mp3,151.99908088235293,"-71.638824,86.329445,10.3488865,6.857707,9.366384,10.972767,0.70842385,9.110982,-0.4516711,6.2811885,-1.2747158,3.4072013,5.112414,5.0248027,6.0686264,5.8424234,2.6376321,8.001819,2.8359303,5.8096046"
Puzzle Box,DJ Haus,Data Dump,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump - 04 Puzzle Box.mp3,129.19921875,"-93.08786,59.325283,0.8982978,24.70834,-2.8770862,9.569589,-12.784568,0.21076234,0.124551706,3.9155133,0.8356117,6.4440613,-0.64908254,4.6718664,0.5017644,6.642001,1.4988977,7.3589993,3.184891,4.901898"
Fuzzy Logic,DJ Haus,Data Dump,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump - 05 Fuzzy Logic.mp3,135.99917763157896,"-142.34447,135.81236,6.826154,50.904068,-3.353717,20.615026,7.279953,1.6309024,7.3686194,2.9380512,1.6390591,6.529242,-3.7916007,3.4145923,-2.0528944,3.1827931,-1.7073109,-0.55133134,-2.6342037,3.4317048"
Glitch Soup,DJ Haus,Data Dump,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump - 06 Glitch Soup.mp3,129.19921875,"-128.13737,91.54008,12.422137,42.634937,5.7989025,14.935141,1.6933035,3.855941,-1.6377017,0.7446695,0.8042095,3.7800028,-0.45433545,0.81975377,-1.7050496,0.23468448,-4.2862477,-0.6595796,-4.5279355,-1.9482145"
123 Go,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 01 123 Go.mp3,129.19921875,"-235.98419,74.503914,-46.455307,10.873071,-17.51593,33.909252,6.5685906,8.996701,2.223807,20.567251,16.043186,4.626907,-3.339822,-0.9887483,2.5183187,-0.41386122,-2.5185,6.0685472,3.0356765,0.2990399"
864511320,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 02 864511320.mp3,198.76802884615384,"-507.39474,-10.455086,-48.807568,-11.663423,17.281933,13.402377,-6.1360264,-0.6091288,0.57659525,3.4471917,5.2160087,2.1488717,-2.3143868,4.457945,0.13994601,2.3531713,2.882224,-0.37133363,1.8718835,2.7568521"
Another Noise Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 03 Another Noise Hat.mp3,117.45383522727273,"-160.83612,51.04025,-57.80609,-8.312946,-17.283781,-5.1305885,-13.312305,-1.5020847,-6.6188107,-0.25148267,-6.5596204,-0.18000983,-1.9133488,0.85573524,-4.292545,0.552514,-3.4742332,0.45786694,-1.6939896,2.9378555"
Apeggiating Clap Loop,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 04 Apeggiating Clap Loop.mp3,64.599609375,"-337.44073,-1.0995787,-18.862907,10.792747,-1.374513,5.063644,-0.95962435,3.6570675,-1.3642555,1.4962006,-3.2640414,1.2010548,-2.710789,1.7060251,-2.636359,0.5068364,-3.1400797,1.4764402,-2.1839564,1.0772127"
Back Pedaling,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 05 Back Pedaling.mp3,117.45383522727273,"-373.56726,54.50627,-67.24658,-30.632605,-27.72313,-7.9560156,-25.620878,-15.326822,-0.2258185,0.5942306,0.60752684,1.5514737,4.099124,0.82625765,0.8936642,2.5908184,-3.2565882,0.20106792,-1.3992908,0.7684176"
Bertie,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 06 Bertie.mp3,117.45383522727273,"-467.8716,91.1336,-1.3706303,2.4662313,-3.2240615,1.8726405,0.15336236,2.1790237,1.9914851,3.2359214,0.840703,2.9574842,1.8193202,0.8402169,0.974731,1.8180473,-1.8670424,1.831895,-0.7094103,-0.5875488"
Bleep Bass,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 07 Bleep Bass.mp3,63.02400914634146,"-386.7047,97.77813,18.829128,27.712234,11.883883,13.226494,7.9905634,7.6296396,5.287012,5.1895113,3.7488108,4.0776033,3.0532424,2.7869165,2.797109,2.1374605,1.726625,2.0225623,1.6575365,1.7734714"
Blue Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 08 Blue Hat.mp3,117.45383522727273,"-235.02548,-42.460415,-19.99657,37.838734,-20.431898,22.636005,-4.332535,12.38579,0.48804593,8.843828,-1.6054792,6.286237,0.005706015,5.514383,0.24144718,5.2428865,-1.0896422,2.7747843,-2.3325572,2.9536083"
Blurt,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 09 Blurt.mp3,117.45383522727273,"-402.62744,61.291737,-2.3634174,32.833893,11.323601,-1.5570982,-5.055609,6.057871,-8.295215,-1.024815,-0.43876958,-5.212697,-1.245283,-3.9910254,-0.36976907,0.25669134,-2.5147777,4.156238,-0.9277828,-0.09069059"
Booming Kik,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 10 Booming Kik.mp3,0.0,"-393.94513,117.67236,63.11573,45.32647,28.564697,23.327679,18.023428,14.708925,10.194803,8.417818,4.21609,3.150262,3.9022548,3.1383426,1.8770653,2.7330005,1.2174261,3.3761215,2.7834773,2.013014"
That's Deep,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 100 That's Deep.mp3,0.0,"-399.20157,88.936386,60.57674,45.822174,35.732025,28.09313,21.11089,16.56825,12.76247,10.3062,8.0022545,6.877323,4.857086,2.992175,2.028589,2.7764986,2.7173293,2.227825,1.4253198,2.0209713"
That's Definately Tom,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 101 That's Definately Tom.mp3,0.0,"-393.48984,84.12461,60.97959,37.18594,22.263948,18.217102,13.753254,10.474813,7.2435107,5.997841,4.696839,4.8781047,4.844515,5.5518475,4.997618,6.6513014,11.415258,20.331688,27.948637,30.992632"
The Four Aces,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 102 The Four Aces.mp3,172.265625,"-416.41,108.446724,67.35974,43.021202,29.698414,18.753893,13.106167,11.078083,8.532267,6.2469144,4.853966,4.5559134,4.752884,4.374563,3.8921034,3.956814,3.6145432,3.145567,3.0888007,2.9018595"
The North,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 103 The North.mp3,172.265625,"-417.6043,148.36412,62.27967,46.241955,28.144972,21.427288,12.972466,5.555599,1.0979536,-0.34403616,-0.4411458,1.5331086,-0.7372188,-5.206486,-8.662474,-7.3779793,-2.280167,-1.5222924,-5.272103,-11.610174"
Toddy,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 104 Toddy.mp3,123.046875,"-159.55223,72.79759,12.77628,24.549633,9.030708,14.574482,3.6986678,8.887305,4.4191003,8.000991,3.442289,7.518644,0.9788386,4.575679,3.0920663,3.0201418,-4.72771,2.391391,2.0666153,3.634959"
Troll Gaze,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 105 Troll Gaze.mp3,143.5546875,"-214.99857,-97.5634,-3.6488442,18.80288,3.7906878,23.84487,6.2814155,17.813484,3.4526153,9.632169,-0.89840263,6.4951196,2.8432724,2.4574208,-1.144622,5.900967,-4.587491,3.3111806,-2.7813845,-0.95669067"
Useful Sub,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 106 Useful Sub.mp3,0.0,"-444.60925,80.795364,71.92618,61.775967,52.85614,44.334393,33.564537,24.079927,16.56279,12.676484,9.57779,6.703049,4.1704307,3.637577,2.5735254,1.5984448,1.4254827,2.1040356,1.2841213,0.42331246"
Wobbly Walk,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 107 Wobbly Walk.mp3,129.19921875,"-271.41296,101.88432,-24.222105,36.360218,0.6372323,20.564163,-5.1325407,7.5483584,0.62481236,4.282456,-2.9408085,3.00177,-2.467873,0.25357488,-1.7607576,1.2949932,-4.366168,-0.78325063,-1.267502,-0.8177314"
Wookie Cookie,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 108 Wookie Cookie.mp3,129.19921875,"-322.902,203.5254,29.09528,0.3745003,11.138411,4.3421226,3.4222708,2.6588013,1.8961444,3.019813,3.6854782,3.744273,3.452009,3.759114,4.409073,5.140569,4.948979,3.1308146,1.242912,0.19833252"
xBox,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 109 xBox.mp3,117.45383522727273,"-247.15549,156.37259,-23.820011,-22.058172,-36.00036,-21.398727,-18.871614,-12.772696,-16.502178,-8.381905,-11.056899,-5.0418367,-3.0349934,0.75806797,-0.6794971,4.3941245,-4.599452,0.9976341,2.8651364,2.844984"
Booming Kik Loop,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 11 Booming Kik Loop.mp3,129.19921875,"-374.0929,122.79039,62.03418,45.78305,27.80582,21.459051,17.292063,13.936748,8.545103,9.70503,4.6650624,2.0680559,2.3446598,1.7386377,1.2623558,2.4244869,1.7236756,2.206041,0.37387004,0.27656093"
Yoink Kik,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 110 Yoink Kik.mp3,0.0,"-408.47098,85.53461,61.943714,50.14374,44.321854,38.08367,30.401161,25.74881,21.290026,18.469282,16.188118,13.953841,10.893084,8.978332,7.301199,6.7748885,5.172508,4.796984,4.484733,4.2050786"
Железный занавес,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 111 Железный занавес.mp3,123.046875,"-55.410007,81.05361,-7.395914,13.347223,-2.9923723,8.272733,-2.8212879,2.457038,-4.9495583,0.9338759,-5.1182227,0.18666795,-4.5525694,-0.27892354,-5.826347,-1.093005,-5.1444855,-0.9933139,-6.129041,-1.8115019"
ЛАЙФ V КАЙФ,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 112 ЛАЙФ V КАЙФ.mp3,258.3984375,"-182.56755,206.46321,-111.56713,3.7519398,13.16194,-49.631485,2.463184,-3.9713666,-31.330307,2.4461708,-9.736407,-19.81233,0.5607381,-10.230544,-13.495651,-0.3150603,-9.524389,-8.023849,-2.2411697,-5.185683"
Лидер Советской власти,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 113 Лидер Советской власти.mp3,151.99908088235293,"-112.67505,-0.35426867,-16.139053,19.621437,-4.7663813,1.0944324,-10.502544,-1.1388628,-10.9953575,-2.3722386,-7.7912216,0.07928894,-4.8405414,-1.558776,-9.013071,-4.710927,-8.107229,-1.8434503,-4.7794843,-0.33942512"
ПНТМ - 2 Флам,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 114 ПНТМ - 2 Флам.mp3,117.45383522727273,"-272.2763,78.13137,11.340705,13.760745,1.0491098,3.4686306,-3.8703995,-2.4831767,-9.224538,-5.7744536,-7.1629243,-3.958702,-6.6561294,-3.2855067,-4.1448307,0.79704696,-2.7523332,-1.9933807,-2.6095412,-0.70833206"
ПНТМ - Флам,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 115 ПНТМ - Флам.mp3,117.45383522727273,"-151.53055,86.221794,-1.6040847,4.8440123,-8.888121,-7.1031375,-15.560792,-9.699974,-12.223525,-5.673187,-10.395855,-5.128571,-4.672454,-0.54231346,-9.944205,-7.465039,-9.266373,-3.9472697,-3.2948275,3.983204"
синтезатор-простой,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 116 синтезатор-простой.mp3,184.5703125,"-155.9998,31.880245,-15.462524,42.91557,-19.946426,22.632952,-2.972873,11.327152,-2.729209,7.067709,-5.55932,3.912921,-2.0019557,2.7788327,-2.069144,5.0245295,-2.2645626,7.0375986,0.8727725,5.4602222"
Си́нти-поп,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 117 Си́нти-поп.mp3,287.109375,"-290.90768,22.25181,5.2316413,13.9008875,-0.5148369,-1.43075,-3.5977602,-2.4433289,-5.376355,-3.388359,-5.6278825,-3.250013,-5.970812,-3.4336424,-5.482057,-3.4145896,-4.649452,-0.94732666,-3.3913386,-1.8682903"
Советская капля,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 118 Советская капля.mp3,172.265625,"-381.92642,38.288815,-4.9681587,-0.23923905,-7.6188297,-3.161178,-6.144877,-2.7131844,-5.9337525,-2.7931647,-4.8510976,-2.4889133,-4.2077656,-2.105928,-4.2728662,-2.0662293,-4.0682354,-1.7085013,-2.573056,-0.2350811"
Советский Панг,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 119 Советский Панг.mp3,117.45383522727273,"-374.19656,35.387352,-23.413258,-15.744912,-16.067524,-7.2305746,-8.387621,-6.3513365,-2.7411356,6.681029,8.580599,10.815481,3.0922322,4.459144,4.036405,1.1383837,-1.5630233,2.606243,3.2173364,1.6614681"
Boomtown,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 12 Boomtown.mp3,0.0,"-457.8245,78.909904,60.74922,51.788437,44.449223,37.427273,29.819723,24.140715,19.132528,15.171287,11.312692,8.758998,6.413488,5.394107,4.027147,3.2836258,2.4496171,2.0192776,0.8360233,0.84044635"
Data Dump Sound Bank Preview File,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 120 Data Dump Sound Bank Preview File.mp3,123.046875,"-198.3222,73.662476,4.288913,16.487968,2.3005245,11.910118,-0.44344503,7.6167746,0.34174317,4.3272305,-0.026841778,3.917864,-0.22007586,1.3972498,-1.2907761,1.4260838,-1.7218845,1.3613547,-0.2924466,0.94754004"
Boring Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 13 Boring Hat.mp3,117.45383522727273,"-638.83374,-15.547672,32.431644,0.12569155,11.135588,2.3614352,6.9553328,1.7552377,2.4243996,2.9094045,1.9558151,2.6003816,1.7482995,1.9387081,-0.17340654,3.8766801,-0.34506524,4.0483246,1.5588536,1.0301423"
Box Jam No Tom,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 14 Box Jam No Tom.mp3,123.046875,"-314.1138,-51.89345,20.885439,11.108825,14.346821,12.100926,5.2737126,20.774326,-2.805345,10.833567,-1.8119041,10.384483,-1.3506675,4.6014266,0.83764315,5.5170918,2.6483781,4.8027253,-0.81009436,2.5032878"
Box Jam Serge Multipliers,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 15 Box Jam Serge Multipliers.mp3,123.046875,"-287.25165,-29.427921,29.290127,13.834169,17.23541,13.676179,5.8415084,18.258303,-3.1735053,7.850632,-3.329369,7.660034,-2.3192527,2.7994814,-0.6630905,2.5175579,-0.02001174,2.734862,-2.2766826,-0.40884426"
Busy Bee,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 16 Busy Bee.mp3,184.5703125,"-89.972206,0.95983297,-87.168625,55.98623,-24.496992,34.43178,-6.088445,14.458167,-0.5219349,9.524823,-0.98619574,11.185685,-0.50827295,1.4225123,0.21620701,7.9544077,-2.7652318,4.111441,-0.24728024,3.3437846"
Can't Go Wrong,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 17 Can't Go Wrong.mp3,117.45383522727273,"-411.16782,-97.548615,40.78739,-7.848502,2.3816085,1.8563027,-7.559786,4.9261713,-4.9951453,10.325055,-4.7728786,9.145404,-2.348642,3.2386708,6.0706296,3.459063,-8.210228,7.2703266,7.173708,-4.2615404"
Castlemorton,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 18 Castlemorton.mp3,107.666015625,"-78.01894,90.66169,-17.064545,15.365468,-9.36246,5.2532883,-8.155369,0.046318963,-7.805816,-1.0469779,-7.478508,-2.479643,-8.055944,-2.2424889,-7.1010575,-2.589619,-6.483235,-1.7092869,-6.368138,-1.7644315"
Cosmic Carrot,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 19 Cosmic Carrot.mp3,86.1328125,"-372.10062,25.90888,-29.526978,-11.460285,-56.836872,-11.104015,-5.969435,7.6028523,11.328945,16.754557,4.62882,22.692759,16.666456,0.46722543,-16.08015,-4.209565,-7.024179,-8.72895,3.0310907,13.00157"
Counting 2 Ten,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 20 Counting 2 Ten.mp3,89.10290948275862,"-313.45898,141.22476,-29.6715,31.451002,17.884996,17.158352,2.337917,1.2274349,-5.3278956,-17.219982,3.840821,-5.6548243,-2.5921688,-5.344526,2.714841,2.6804678,-8.1987705,-0.19703285,2.396308,0.61240965"
Curb Your Enthusiasm,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 21 Curb Your Enthusiasm.mp3,129.19921875,"-164.5144,19.993023,-26.211035,49.883728,-15.44619,29.11196,6.043133,15.200136,5.9802833,13.27032,2.710633,9.625634,4.597932,6.642483,2.5226595,7.0607233,0.36493528,6.4059877,1.2695246,4.4376097"
D Hit,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 22 D Hit.mp3,129.19921875,"-405.0466,11.293677,-13.850644,13.672242,-64.67962,33.930576,-0.5198473,5.1768203,11.793196,0.9196663,0.29187983,4.7063947,-0.37251514,4.5396852,-0.23766515,5.513518,-0.75609916,2.9487495,1.456149,1.6106073"
Deflector Sheild,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 23 Deflector Sheild.mp3,112.34714673913044,"-198.29234,19.806889,-21.659273,39.649197,-21.686657,15.200487,-8.491248,4.8880434,-11.266259,0.109662466,-11.458056,-4.207024,-11.281248,-7.9850597,-10.42499,-3.5905373,-1.9024479,8.963826,9.640202,11.332603"
Deflector Shield Ride,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 24 Deflector Shield Ride.mp3,129.19921875,"-175.4892,-36.54179,6.012786,-8.644022,-29.352684,-7.8699517,-11.033583,-17.855598,-8.203213,5.3590536,10.183302,3.8226998,-12.39694,-13.243442,14.605007,16.530033,-11.886993,-0.47753224,-8.669484,-4.049053"
Down Shifter,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 25 Down Shifter.mp3,0.0,"-317.36545,164.76262,50.468567,16.071133,17.421461,16.43336,8.617616,4.625033,4.4323797,4.4230547,2.2746067,3.117338,2.7522159,1.273045,0.49019402,2.075258,1.119409,1.7693139,0.9859852,-0.6724661"
Drop It Will You,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 26 Drop It Will You.mp3,92.28515625,"-251.94975,5.78598,-20.087645,25.17684,-21.314085,17.14432,-7.4433265,6.0427384,-2.0824063,5.080838,-2.7089195,3.3801217,-1.6942497,2.5880947,-2.2328696,3.535059,-3.8911605,3.6172729,-0.2632112,2.4650664"
Druidzz Dream,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 27 Druidzz Dream.mp3,73.828125,"-294.39786,185.0547,18.51646,21.138744,16.36029,-0.5782197,-9.475591,-7.926882,2.9569478,2.5409338,0.35208392,0.87746435,1.0815616,-1.5274584,-1.064583,1.0503547,-3.7959218,0.1593645,-1.7701612,-3.3230073"
Dush,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 28 Dush.mp3,117.45383522727273,"-185.9583,-44.050358,-15.975855,28.122002,-19.97935,20.76322,-4.346822,13.225511,-0.129015,8.846569,-2.2534075,7.7299747,-0.74275625,5.2925925,-2.5193293,3.2911844,-2.543547,3.901461,-1.8208745,3.3352988"
Eh,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 29 Eh.mp3,117.45383522727273,"-440.91202,61.77589,-20.90516,29.852983,25.61595,15.153558,1.5130297,10.994323,10.574,-13.823041,2.303179,-9.575803,1.4192234,-7.3547473,-4.296476,2.1682208,-2.3816247,1.1184667,-0.35055766,-2.2431276"
Escape From Samsara,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 30 Escape From Samsara.mp3,99.38401442307692,"-265.56348,143.915,-32.909016,1.3115324,24.101496,3.0742803,1.8632516,1.2491049,5.5700464,5.0558486,-3.6871932,-1.7425493,2.867566,-0.22757322,-1.4463601,-1.7416974,-3.2002015,-1.0585288,-2.9463568,-5.1161633"
Extended Klonk,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 31 Extended Klonk.mp3,117.45383522727273,"-339.36276,116.50229,37.483097,28.741926,-23.70803,23.212343,3.689124,-3.5414376,7.266264,-8.209907,-5.699628,1.9681296,-8.416297,1.226947,-2.9546227,-1.484895,-0.5193054,-2.7859697,-1.3899326,-3.9089937"
FDT,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 32 FDT.mp3,117.45383522727273,"-458.94443,50.335453,-36.241756,-28.666882,-27.790142,-17.66728,-16.69167,-3.5953157,-2.208438,-0.92237455,0.051084317,3.4412904,2.3358307,3.5336237,3.680464,4.7622094,2.407427,7.5660443,3.298848,2.7244875"
Fizz Out,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 33 Fizz Out.mp3,123.046875,"-30.425629,27.502832,-21.335579,1.2744962,-11.044796,0.107724376,-9.450769,-1.5793526,-6.892879,0.23895445,-6.410559,-0.47793236,-3.95002,-0.26053298,-4.3351064,1.5170627,-5.8650074,1.3978218,-3.1320434,-0.22574984"
Fizzy Drink,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 34 Fizzy Drink.mp3,117.45383522727273,"-381.95724,-92.19458,47.948135,-10.992093,8.973716,-0.57164866,4.1352572,-0.2243587,3.0171435,1.5922073,-0.5413361,0.8194437,-0.7417572,-0.98469263,-2.068593,6.471599,-1.4232609,4.092656,1.3340774,0.85805696"
Fizzy Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 35 Fizzy Hat.mp3,117.45383522727273,"-274.27182,-62.072777,16.117626,-6.551643,5.939853,0.5745604,-0.45420694,1.9413983,-3.376838,5.6185884,-3.6451461,3.574772,-1.4761169,0.13778907,-2.6018283,4.744342,-3.4633782,1.1606241,-1.1088059,-0.041224156"
Flabby Kick,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 36 Flabby Kick.mp3,0.0,"-364.02127,130.9274,56.72782,23.136383,17.217854,16.938955,9.202491,4.519037,3.3654995,5.993463,6.228454,4.8541055,2.9855201,2.644113,2.066823,2.6195138,2.8352435,1.9304345,-0.23573393,-0.67110765"
Flumox Hit,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 37 Flumox Hit.mp3,117.45383522727273,"-222.18768,-10.645029,-28.052526,29.230202,-9.903075,35.009068,-10.019367,24.272331,6.358766,14.990179,9.912318,3.6831253,9.638837,12.688565,5.1566973,15.519427,-1.7644747,7.1083865,23.570265,11.530335"
Flumox,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 38 Flumox.mp3,117.45383522727273,"-503.8909,-3.1004908,-10.508953,23.587938,-12.000654,8.119431,0.87642795,5.2894773,-0.97940975,1.8789378,-5.167323,-0.54356563,-1.5571002,7.8228984,12.919143,13.301645,3.866472,-3.9275815,-3.1438448,6.6165013"
FM Beat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 39 FM Beat.mp3,129.19921875,"-144.84215,29.13287,9.727082,44.24616,-13.291871,29.33312,1.530808,16.842203,-10.462601,8.927077,-9.227404,7.0677366,-5.0603075,4.7922745,-2.5430005,1.873308,-4.802522,-1.206398,-2.6733537,1.10907"
Freak Kik,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 40 Freak Kik.mp3,0.0,"-275.1536,64.89774,-18.564978,41.984196,0.83583885,5.2624884,-0.63003224,4.481191,-0.2571939,3.5498102,-1.2891517,2.4013088,2.1730664,-2.2798615,-1.5875698,1.2660806,-4.04738,3.3359706,-2.0611703,-0.1778058"
Freak Out Kick,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 41 Freak Out Kick.mp3,129.19921875,"-208.42393,98.86313,-16.986334,18.324219,-1.3194573,7.61971,0.058605406,1.4248105,-0.54474324,4.304746,-0.6923622,5.7216206,4.901706,0.04687575,-4.0075445,1.375708,-2.1591122,3.9067936,-0.7840496,-1.1617503"
Free Kick,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 42 Free Kick.mp3,117.45383522727273,"-230.7406,177.70345,-9.994632,-12.524002,-7.316071,5.5105715,-0.930334,-4.078116,-4.988337,6.3879333,8.346979,12.99591,20.091473,11.642018,-5.1455183,-5.163484,1.2819693,7.057233,-1.209378,-5.819342"
Fuzz Bee Fruby,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 43 Fuzz Bee Fruby.mp3,287.109375,"-361.99478,16.225496,-61.24529,51.171104,-0.08574925,26.482769,15.685818,10.091684,10.328655,7.7947717,10.551169,4.640511,0.11323421,5.2294393,-2.0543518,2.749741,-2.5791264,-0.68128914,-0.6949499,-1.037997"
Fuzz Bee,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 44 Fuzz Bee.mp3,184.5703125,"-354.7903,-6.299391,-8.737239,29.043556,-17.85449,20.865234,-3.3013053,8.147931,1.0974602,2.468471,1.3045104,1.9084905,-1.7974044,1.9841394,-2.9685266,2.2584016,-1.0502819,2.6626587,0.41669685,2.2402384"
Fuzz Hit 2,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 45 Fuzz Hit 2.mp3,198.76802884615384,"-297.74362,-0.29857263,-7.136446,46.124985,-11.692633,23.281017,-0.4482608,12.848937,-2.0376656,9.282099,-1.1386427,7.1863008,-1.9961888,3.6008005,-1.310271,4.1044836,-0.9912692,3.5304224,-1.7379721,1.9893638"
Fuzz N Sub,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 46 Fuzz N Sub.mp3,123.046875,"-392.18277,60.571716,24.484926,35.923714,11.346133,25.984257,14.61524,13.508398,12.275627,9.59475,11.622945,16.152884,15.614295,16.062227,10.566601,5.240131,2.0320618,4.248645,4.6843367,3.7020476"
Fuzzy Noise,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 47 Fuzzy Noise.mp3,117.45383522727273,"-395.30157,-34.903667,-18.410995,13.233603,-11.35726,4.7141542,1.3529085,-0.90375936,-0.49239075,2.0050192,-1.8290118,3.1112432,-1.2842227,-0.106560834,-2.467649,1.8244327,-2.9815414,2.1790617,-0.74505234,-0.9441938"
Gabagool,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 48 Gabagool.mp3,287.109375,"-381.58508,70.73703,-11.976108,-2.6455507,-4.274126,2.3198228,-1.6064023,-0.48714742,-5.522382,-1.5001583,-0.07108125,2.2655718,-2.126961,-1.0608213,0.11128651,0.9366007,-2.8766038,2.0743089,-1.3100156,1.8587054"
Ghost In Merzbow's Machine,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 49 Ghost In Merzbow's Machine.mp3,117.45383522727273,"-149.13916,13.87986,-3.1951153,6.864083,-6.7142005,6.0180197,-1.5938377,-4.5435233,-5.2666974,10.270032,11.799723,-10.939315,-1.8490696,-4.0893335,-7.951153,7.9661794,-6.8808985,8.007754,-5.3530297,10.973356"
Gloop,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 50 Gloop.mp3,117.45383522727273,"-456.6312,80.114975,-13.66157,47.952698,18.682133,-1.6846918,-15.972166,-6.916394,-2.8727021,-22.689877,7.2206573,-3.2726119,-0.89941436,1.163089,-0.8756339,6.6371155,-2.1681209,2.189242,6.504508,-2.8921638"
Glurp,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 51 Glurp.mp3,117.45383522727273,"-291.83698,159.4601,-20.74425,-10.769333,-9.91527,-5.580196,-14.427934,7.746703,1.2056438,1.6368204,8.5871935,-2.5279644,-1.5122759,-3.4310834,7.0328455,1.340676,-8.474553,-0.5100709,-0.8780904,1.2090204"
Green Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 52 Green Hat.mp3,117.45383522727273,"-680.7652,-1.1665226,24.328188,6.3816404,10.87433,6.7052855,3.6967087,7.3237534,5.343349,8.378994,1.162262,5.4219003,0.46417534,2.0531423,3.2015846,2.9495797,-3.0043252,3.1937163,3.5087385,0.3475264"
Grunt,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 53 Grunt.mp3,117.45383522727273,"-491.962,30.13327,9.065408,17.579332,17.85692,12.840985,-0.62668097,6.208444,11.522232,5.289778,-2.141375,3.7850578,7.4518046,1.4071444,1.6369125,0.39128083,4.0268645,3.9805033,-1.1261455,1.7514924"
HatzNBass,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 54 HatzNBass.mp3,129.19921875,"-287.09457,-9.086376,35.663456,17.626986,19.133251,25.059778,9.47863,20.306253,11.12079,21.360348,5.966487,18.692291,7.7378163,17.197973,5.5141754,4.368774,-0.56930596,12.570748,4.671587,8.294216"
Helicopter Hatz,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 55 Helicopter Hatz.mp3,129.19921875,"-284.9178,-33.008026,-1.5670522,38.896973,-14.861219,31.025688,-0.6930597,18.000046,1.3243433,13.503374,-1.2355663,9.9390745,-0.31509662,6.1213527,0.14458774,5.5990586,-0.8205554,4.6573234,-1.0061018,3.8507845"
Hits Different,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 56 Hits Different.mp3,117.45383522727273,"-383.3779,97.69567,-0.56716245,-26.638435,-7.5623565,-0.5273798,-4.543671,-5.2193513,-3.977716,-4.2077336,-5.01397,-0.6167708,1.6344775,-1.1235305,-0.8816919,-0.7934784,-5.9021807,-3.2941256,3.5524719,1.3583466"
Hits Differently,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 57 Hits Differently.mp3,0.0,"-495.19025,-4.4929795,-4.820636,-3.0878835,-7.61387,-0.63507664,-3.2057786,-0.77220356,-1.861784,0.82314587,-0.9823952,1.0063727,-0.1437972,-0.20235734,-2.810515,-2.2210145,-8.136843,-5.8497415,-3.0098748,7.277841"
Is That Tom?,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 58 Is That Tom-.mp3,0.0,"-410.3336,105.28425,61.696217,32.83563,20.575996,16.190582,13.513921,11.150313,8.198805,7.694276,7.1221356,6.3642983,6.040298,5.939628,5.3837943,6.02288,7.07223,8.399767,8.280507,6.7071238"
Kik It,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 59 Kik It.mp3,117.45383522727273,"-403.85458,126.789764,72.223625,51.09547,31.677055,21.927523,14.294177,12.833001,12.036844,12.843158,11.648156,10.875863,8.19339,6.0360003,3.6609085,3.110748,2.105937,3.2716677,2.7986734,3.0729735"
Kink,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 60 Kink.mp3,117.45383522727273,"-397.71347,133.30179,-22.054712,-21.332811,-13.98113,8.506928,6.085986,9.360672,-8.66009,2.814199,11.208165,0.9851244,-2.4341855,-2.5718799,-4.219449,-3.3402424,10.406732,9.398314,-3.4861283,-0.96262854"
Kinky Klap,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 61 Kinky Klap.mp3,117.45383522727273,"-287.10626,87.14146,-48.058483,1.194417,-5.227813,7.1763062,-0.51832306,4.4874325,3.0966115,-3.5910683,12.135516,-4.5666046,2.4269881,-1.3112361,-0.7853758,0.13690639,1.6364197,2.3926327,-1.2348961,4.7817698"
Kinky Robot,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 62 Kinky Robot.mp3,129.19921875,"-242.97472,143.9084,-31.389278,49.54948,23.307585,-3.1109319,-19.121887,0.72638685,2.0677757,-22.935282,11.291225,-4.5951843,0.6093819,0.19868392,-3.7468936,4.931741,-4.3934755,3.4856842,4.2324843,-3.290636"
Likable Clink,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 63 Likable Clink.mp3,117.45383522727273,"-254.83871,-70.253944,-157.93822,-23.113863,5.795657,11.09781,28.263952,9.428841,4.325974,10.896267,1.3884468,4.2161684,2.854865,4.4596148,-2.8149123,5.9059696,-4.243007,1.8281618,0.0287042,0.034186125"
Loosing Your Marbles,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 64 Loosing Your Marbles.mp3,129.19921875,"-173.85074,124.16674,36.72555,34.59697,-23.539371,18.792458,-0.9981445,-4.398264,-0.9306454,0.65625405,-10.424834,2.0450819,-8.26106,0.070403956,-8.405749,2.9941592,-8.289086,-0.029454114,-3.9713724,-2.6344392"
Mad Hatter,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 65 Mad Hatter.mp3,129.19921875,"-327.1763,-60.13878,-5.331082,-13.915291,-8.719588,-5.097593,-7.8278346,-9.967669,-6.6206365,-1.6050224,-3.0111117,-2.1439328,-1.3654237,-2.0239995,2.0771558,14.096321,5.4775143,-2.988357,-6.036196,-2.8464499"
Modular Kik,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 66 Modular Kik.mp3,117.45383522727273,"-456.85773,134.35275,78.25489,56.955997,38.8074,28.116278,17.270836,11.324777,5.3187337,3.2916284,0.6638365,1.0524808,0.30025384,1.4875869,1.0027429,1.950496,1.5114406,2.0214083,1.2639266,1.3465585"
More Robot Trash Talk,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 67 More Robot Trash Talk.mp3,161.4990234375,"-308.37976,102.618095,4.7905083,23.586128,-3.158996,25.98842,-2.9447663,5.717067,2.1760316,7.751552,1.5607855,-1.0447525,-0.56692034,-1.951767,-6.564907,-1.6376274,-3.4463606,0.9161837,-2.5270653,-0.6197503"
Naughty Clap,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 68 Naughty Clap.mp3,258.3984375,"-349.49878,29.35891,-39.82073,-4.003272,-4.501646,0.89889055,-4.0405207,-1.580469,-2.0750182,4.355387,-1.4322333,3.4913301,-1.7175286,8.044707,-0.35903168,4.194914,-2.3737683,2.7569792,-1.7664586,0.41062546"
Nerd Snipe,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 69 Nerd Snipe.mp3,117.45383522727273,"-407.09686,85.47629,-20.435835,-10.953896,-15.637594,-7.078697,-10.240004,-7.209034,-2.9678657,2.59418,-0.728184,1.1692713,2.041793,2.9758308,0.09680823,2.5598364,-0.62166595,1.147299,0.20299666,-0.13938983"
Not Another Noisy Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 70 Not Another Noisy Hat.mp3,129.19921875,"-297.65063,50.31714,-31.266613,5.4172173,3.6109993,-10.47391,5.1463933,-4.512976,-1.2381626,2.4238086,-8.693605,6.229558,-6.715203,4.2634525,-2.3797615,1.0310632,-1.3306754,-2.5247657,-2.013061,0.9854653"
Nuke The Fridge,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 71 Nuke The Fridge.mp3,129.19921875,"-229.86285,60.249268,33.26284,57.793633,0.0154651785,39.44261,11.476518,12.580278,8.66625,13.886755,6.2186756,10.873753,2.1942196,4.3302956,3.511372,10.152132,3.6981628,-0.3190866,-2.329221,0.67847145"
Nutty R2D2,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 72 Nutty R2D2.mp3,107.666015625,"-256.83832,143.53906,-33.174393,15.3658495,-7.2562757,-14.757739,-14.850693,2.1878946,9.6192,0.0404853,11.740314,-3.445816,3.9254873,4.9487863,-1.3645453,-2.5270138,-1.8640975,1.6897784,-1.1385838,0.11881631"
Oh Yeh,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 73 Oh Yeh.mp3,258.3984375,"-165.46368,61.76276,-18.423878,37.756435,-22.097363,18.776875,-4.3282967,2.798415,-1.8100657,5.2158966,-5.135766,3.4999876,-3.7932215,2.528183,-2.977232,0.66717964,-2.8138673,1.3234373,-2.9445217,2.073618"
Omnipotent Eye,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 74 Omnipotent Eye.mp3,172.265625,"-324.62628,174.65398,-2.666333,2.5254319,9.76281,-1.3309121,4.74359,6.071544,1.3814682,1.6452923,2.8414683,1.3486153,-1.435275,1.0098782,1.8988458,1.2176839,2.2377934,1.262847,-0.72660494,0.6556943"
Onosecond,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 75 Onosecond.mp3,215.33203125,"-195.0874,-10.4899435,-31.621794,26.695307,-16.154287,3.5506737,0.045427777,-1.4721959,2.5271595,3.023967,0.43965605,0.6238579,-2.1910048,1.93614,-3.567846,3.4888983,-4.7831497,2.1305285,-3.1931715,-2.5793586"
Organ Loop Digger,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 76 Organ Loop Digger.mp3,123.046875,"-480.11667,94.52652,9.907489,6.8217154,-0.95751864,-2.0514653,-4.757208,-3.370037,-3.7239926,-1.785273,-0.43576065,1.37785,1.0947567,0.7592621,0.5169596,-0.5042614,-1.6726294,-1.8741294,-1.2703242,-1.0412858"
Other World,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 77 Other World.mp3,123.046875,"-294.59598,160.59602,-21.956785,3.2361872,18.402096,5.3522563,-1.8260405,1.504474,6.0618625,4.5538764,-1.7236989,-2.0408814,2.015914,-0.6659289,-0.52475065,-0.021698926,-2.5616567,-0.29635403,-2.4346077,-3.2160745"
Parp,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 78 Parp.mp3,117.45383522727273,"-471.18994,4.0796504,-43.08653,7.8856144,-21.586758,-1.0796139,-9.42379,-0.021484505,-4.9553924,-0.48496264,-4.743343,-1.4465871,-4.146553,-3.1596258,-5.2928934,-1.5952449,-5.6142244,-1.8272055,-4.220518,-3.2941797"
Pink Clap,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 79 Pink Clap.mp3,151.99908088235293,"-635.8039,-14.082246,1.3846816,9.584412,-6.6584044,10.2237,-0.036809966,4.4471517,1.4172702,3.742734,1.8205369,3.1002662,1.2992603,2.534458,1.0114695,2.5845797,0.20440936,1.9261055,0.51358587,1.7605671"
Pip Nails,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 80 Pip Nails.mp3,129.19921875,"-156.13106,99.46311,17.464087,35.0173,-29.66716,14.785016,-15.25313,-1.7186142,-8.387404,3.7824097,-4.4846053,2.9625924,-7.072956,-2.9859,-6.290438,3.0815141,-5.7328963,0.73424,-0.9493865,0.5635392"
Probability Troubles,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 81 Probability Troubles.mp3,129.19921875,"-140.84406,62.239372,21.118065,22.950266,13.148091,13.354437,2.984034,12.363522,2.0370378,11.8640375,-1.2002125,7.0044622,0.4333372,6.778095,1.2024504,3.4476647,-2.55277,-0.9971769,-2.5110705,2.2126732"
Ratlicker,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 82 Ratlicker.mp3,117.45383522727273,"-271.23715,161.92618,-54.280296,-16.096926,-28.584064,-28.982197,-2.7602918,-4.8215084,-18.02038,-7.9978,-11.491715,-10.948989,0.3260211,-3.6170995,-7.10289,5.286066,0.16036157,-1.6975745,-0.030852752,-0.7251826"
Reality Net,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 83 Reality Net.mp3,112.34714673913044,"-218.85506,98.91019,-15.613629,31.565462,-22.758896,9.246306,-10.310117,-1.0208366,-16.765892,-6.6961613,-10.122776,-2.934182,-8.502388,-7.548932,-12.004105,-7.4978027,-10.690259,-9.673737,-12.550005,-6.060873"
Res Kik,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 84 Res Kik.mp3,117.45383522727273,"-405.96783,44.34493,38.43266,18.494074,13.483058,17.150158,0.5444631,12.700001,-1.9064367,13.568065,-2.8063262,9.60496,0.8958411,4.0878716,2.2054393,2.6172135,3.1913133,-0.41194943,5.1628733,-1.4221894"
Ressy Sub,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 85 Ressy Sub.mp3,123.046875,"-230.04001,7.0438175,-34.435047,5.1699305,30.798594,48.33108,57.559948,18.946058,-27.378925,-10.481186,44.536537,37.222748,-14.6943,-9.964533,19.595732,5.60333,-3.2595603,33.230972,-7.0365696,-18.61649"
Robot Saying Wow,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 86 Robot Saying Wow.mp3,53.8330078125,"-368.11252,120.059845,-27.084738,23.778826,-1.2429985,-2.477925,12.606552,-0.4630579,3.2518685,5.3593807,-1.482464,6.0654473,0.35804105,-0.3300381,1.9226229,-2.2937443,2.3613102,-0.33044446,-2.0661514,-2.7319176"
Sample & Hold,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 87 Sample & Hold.mp3,99.38401442307692,"-265.7738,64.14408,-16.346273,33.20058,-18.613651,22.221323,-2.535798,7.1311946,0.31617495,3.5665627,-0.0701751,1.3273498,1.5986804,-0.633054,-0.1644166,1.6609241,-1.3752792,0.84093666,0.32204944,-1.1437538"
Scratchy Hats,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 88 Scratchy Hats.mp3,123.046875,"-431.28378,-14.309821,-7.23337,2.0222087,-5.3758993,0.7620769,-4.5518503,-3.2237647,-4.9091883,-1.5265007,-3.8390014,-1.1549803,-4.545293,-0.47076842,-0.4823564,-0.7962835,-6.18433,-2.341383,0.0010494492,1.3056577"
Simp,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 89 Simp.mp3,117.45383522727273,"-358.1495,179.79616,0.81238586,-32.722984,-4.8038406,-2.310228,-14.12361,-22.78913,-24.322186,-18.135998,-7.5876923,0.96492404,1.3607204,-0.14844026,3.9229863,10.758211,13.006993,8.616061,4.73129,2.8407695"
Sirenz,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 90 Sirenz.mp3,198.76802884615384,"-386.07004,18.86133,-20.633724,-3.5420933,-10.413835,-3.093451,-7.0867057,-1.0982397,-3.5150535,1.1275,-2.0073051,1.8013511,-1.0091084,2.089154,-0.3235246,2.5973144,0.2961894,2.9237769,0.62399834,3.3088238"
Smize,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 91 Smize.mp3,135.99917763157896,"-170.4375,13.451461,-41.71176,27.190304,15.560969,-21.801237,-18.30506,6.1584992,4.1005497,-3.1015277,0.49324372,6.7117763,-11.641925,5.8006773,1.1778476,-2.192993,1.3164438,1.9268087,-2.6891003,2.1352935"
Snare Roll,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 92 Snare Roll.mp3,123.046875,"-255.30756,-28.130495,14.698581,57.301826,-0.37540165,17.3081,-5.0977664,3.48382,-6.5832176,-2.1130261,-15.615038,-8.717632,-11.578786,-9.434604,-9.0494995,-6.446828,-12.373075,-2.0630188,-10.84581,-9.836447"
Soy Face,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 93 Soy Face.mp3,198.76802884615384,"-38.95951,95.19778,-48.422512,-3.2667525,-15.739756,-3.3070545,-23.86943,15.444064,-15.720217,0.04963122,0.59988904,0.19472055,2.8208067,4.67707,4.307734,6.6018114,2.1182292,9.397782,3.1919658,1.2065046"
Soy Feet,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 94 Soy Feet.mp3,129.19921875,"-207.25804,51.561714,-19.544165,21.187044,-17.837212,20.126118,4.0115986,7.596839,-0.7712685,3.5496883,1.9376782,4.9577627,-0.9549443,-0.116124034,-0.6298428,5.4986844,-0.4160269,5.8481197,-0.64185876,-0.46555117"
Soy Sauce,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 95 Soy Sauce.mp3,117.45383522727273,"-140.95938,42.4151,-38.170086,17.39584,-15.919702,26.773724,10.972266,10.650024,-9.891358,-3.2876992,6.403711,12.096772,-2.4765913,-1.1072495,0.3132817,7.2101197,-0.16649315,6.5859246,-3.280458,-3.2993302"
Start Up,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 96 Start Up.mp3,258.3984375,"-168.00511,73.57223,-38.237064,-5.7315707,-15.212894,-4.340437,-8.410964,-2.004267,-7.1039615,-1.6595782,-8.846169,-2.646562,-5.163839,0.06751501,-2.947696,0.5579676,-3.622516,1.4596218,-1.3163253,3.313365"
Strip Jenga,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 97 Strip Jenga.mp3,117.45383522727273,"-203.17664,84.10234,-131.67163,-34.02774,-35.25093,-16.768606,-17.899813,14.322893,-4.1944866,5.9739623,-0.6572482,0.83681643,-3.8097198,4.3569403,0.6674351,4.6582,-5.770465,5.46218,-4.005952,1.9561527"
Swinger Hat,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 98 Swinger Hat.mp3,123.046875,"-229.722,-133.37354,-18.504137,-6.0350876,-5.1569314,11.608579,-7.292088,1.6926097,-1.4969252,4.331555,-2.0987623,0.3344316,-2.101002,-1.194998,-0.8660491,2.264159,-2.9545674,0.12639019,0.016126925,0.9027603"
Synthcussion Nonsense,DJ Haus,Data Dump Sound Bank,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Data Dump Sound Bank - 99 Synthcussion Nonsense.mp3,123.046875,"-105.0158,-15.811938,-20.970129,45.64538,-20.962791,35.530407,-1.9325628,16.090193,1.1424812,14.015467,2.2067907,9.036743,1.9777191,8.519763,2.070391,4.4563947,0.050926454,5.627402,1.506542,3.141632"
Catch Your Breath (Coco Bryce Remix),DJ Haus,Desert Sound Colony & Coco Bryce Remixes,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Desert Sound Colony & Coco Bryce Remixes - 01 Catch Your Breath (Coco Bryce Remix).mp3,129.19921875,"-81.021935,28.57371,18.993437,29.77325,19.076845,18.75519,6.8769636,13.744929,2.4777873,11.882626,2.8853366,9.256286,0.98573613,3.4547222,2.8103442,0.4207507,-1.4833202,1.5745078,-1.5784756,-2.1872256"
Bleep Bots (Desert Sound Colony Remix),DJ Haus,Desert Sound Colony & Coco Bryce Remixes,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Desert Sound Colony & Coco Bryce Remixes - 02 Bleep Bots (Desert Sound Colony Remix).mp3,129.19921875,"-93.72601,86.94772,23.28808,23.999607,2.074311,12.213611,5.306367,10.915963,2.7891536,6.4803495,3.6470096,4.418356,-0.8693392,2.519956,-2.3483999,0.91568166,-1.2836794,1.1370347,-1.8073239,1.8641522"
Hot City Bass,DJ Haus,Hot City Bass,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Hot City Bass - 01 Hot City Bass.mp3,129.19921875,"-73.66322,55.35251,0.750897,35.74873,7.7212524,18.482508,5.4693,7.6192107,0.175193,7.6300273,-1.0201514,0.88690215,-0.6333944,4.6056623,1.2515424,3.4196768,-1.998909,1.0433513,-1.9211838,-0.13238192"
Sweat,DJ Haus,Hot City Bass,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Hot City Bass - 02 Sweat.mp3,83.35433467741936,"-182.91597,48.634064,15.018973,15.838827,12.012603,17.206518,14.884823,14.889733,10.574464,9.9567175,4.9206967,3.0593436,1.1904227,3.6761925,1.5026509,6.866422,1.9722521,5.0646496,-0.50398695,2.3403816"
Let My Brain Go (Len Faki Remix),DJ Haus,Let My Brain Go (Len Faki Remix),2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Let My Brain Go (Len Faki Remix) - 01 Let My Brain Go (Len Faki Remix).mp3,129.19921875,"-108.163284,45.179092,21.513306,23.050642,12.192941,27.874533,13.565221,16.440697,9.117275,12.424161,5.7083445,12.361645,5.6873875,5.816311,3.9645245,1.562859,0.32985863,5.816001,-1.6687949,3.0599992"
Analog Chime,DJ Haus,Machine Learning,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Machine Learning - 01 Analog Chime.mp3,103.359375,"-97.95326,91.51973,21.93434,9.945388,15.307903,18.097363,-0.95965093,9.954313,-0.22991459,11.094809,-1.9143775,3.3365917,3.6634183,8.17307,2.2810109,3.923034,2.9325511,5.9019723,2.104745,0.6373146"
WiFi Network,DJ Haus,Machine Learning,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Machine Learning - 02 WiFi Network.mp3,135.99917763157896,"-124.31063,15.436058,11.593748,23.071285,8.1193905,13.742063,2.9161055,6.2997427,-0.47014302,5.0840616,-1.786011,4.283281,-1.9135116,1.8199104,-0.8969024,2.9624622,-1.8027204,3.3061182,-3.2559114,1.2218277"
Machine Learning,DJ Haus,Machine Learning,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Machine Learning - 03 Machine Learning.mp3,129.19921875,"-71.32148,48.694824,6.805074,33.585632,3.8759313,19.16194,2.622727,10.976816,2.6300263,7.461217,0.5719448,6.7642016,2.3683534,3.8417864,2.8672318,3.801285,-2.054387,3.5125158,1.8684211,4.152344"
Modul8 (ItaloJohnson Remix),DJ Haus,,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8 (ItaloJohnson Remix).mp3,129.19921875,"-199.38026,88.61918,34.8789,26.653543,11.230676,23.920038,4.872302,12.29483,4.630765,7.6691976,4.000138,6.286042,3.3407152,3.5829272,2.7088993,3.8398848,2.7545664,3.8295171,1.495677,3.8402607"
Modul8,DJ Haus,Modul8 + ItaloJohnson & Nikk Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8 + ItaloJohnson & Nikk Remixes - 01 Modul8.mp3,103.359375,"-130.19014,106.697205,18.970934,31.430597,8.357198,21.994377,4.657783,13.089882,3.8427007,8.416742,2.833158,5.757218,2.0958893,3.6977084,0.076231435,4.452673,-0.17957805,3.2465503,0.77600366,3.7730236"
Modul8 (ItaloJohnson Remix),DJ Haus,Modul8 + ItaloJohnson & Nikk Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8 + ItaloJohnson & Nikk Remixes - 02 Modul8 (ItaloJohnson Remix).mp3,129.19921875,"-199.38026,88.61918,34.8789,26.653543,11.230676,23.920038,4.872302,12.29483,4.630765,7.6691976,4.000138,6.286042,3.3407152,3.5829272,2.7088993,3.8398848,2.7545664,3.8295171,1.495677,3.8402607"
Jak Beat,DJ Haus,Modul8 + ItaloJohnson & Nikk Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8 + ItaloJohnson & Nikk Remixes - 03 Jak Beat.mp3,129.19921875,"-71.732445,44.770527,12.701987,29.819176,10.459713,22.11433,0.9240664,14.143838,4.713959,7.7114496,1.7552738,4.912075,-1.6252126,2.5786536,-1.8271288,4.1616573,-3.5953252,1.4863157,-4.3486433,1.8853389"
Jack Beat (Nikk Remix),DJ Haus,Modul8 + ItaloJohnson & Nikk Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8 + ItaloJohnson & Nikk Remixes - 04 Jack Beat (Nikk Remix).mp3,89.10290948275862,"-62.418987,44.15083,7.8195944,40.209423,9.365758,17.95862,11.477259,14.398022,9.193794,5.195493,2.992171,8.840849,1.7213042,1.9716995,-1.8395162,4.945333,2.1679466,1.8983246,-4.3728004,0.5672412"
Tek Houz,DJ Haus,Modul8 + ItaloJohnson & Nikk Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8 + ItaloJohnson & Nikk Remixes - 05 Tek Houz.mp3,123.046875,"-150.52084,43.384197,35.90266,29.097795,15.674085,25.337955,5.943532,21.46919,3.9418063,16.477737,3.3125477,9.664017,5.7657743,12.162578,13.594736,8.550114,2.3961086,8.467741,7.5874906,6.9490566"
Modul8,DJ Haus,,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Modul8.mp3,103.359375,"-126.88647,107.72401,19.15618,31.745707,8.43134,22.213924,4.701096,13.221726,3.876108,8.502032,2.858842,5.8139625,2.1178071,3.734961,0.07532609,4.497124,-0.18640657,3.28279,0.78151697,3.8101256"
Needin' U (MK Dub) *Free Download*,DJ Haus,,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Needin' U (MK Dub) -Free Download-.mp3,80.74951171875,"-96.865776,73.72818,26.024937,28.269285,18.35303,19.6338,0.0897071,13.691954,5.1886334,12.157436,0.09262496,5.076129,1.8747132,4.307353,0.14685729,6.410618,-0.5922213,6.022062,2.217757,4.293563"
No More,DJ Haus,No More,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - No More - 01 No More.mp3,129.19921875,"-104.79181,112.91919,13.244288,34.40654,7.5578094,7.0161834,-1.3308629,4.670605,-2.3425226,2.9888327,-5.428793,3.0747652,-5.344794,-1.3914479,0.13137415,1.3931634,-1.6298205,4.4215117,-1.3572323,1.4976844"
Setting Me Free,DJ Haus,No More,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - No More - 02 Setting Me Free.mp3,123.046875,"-110.10576,43.384247,-0.30464354,13.95876,8.3967285,14.868944,2.0927377,9.827492,-2.2997048,3.620872,-2.9524179,12.879391,1.7393696,8.226716,-1.9576095,5.617708,-5.766524,1.7550062,-2.236894,-0.5667403"
Stuttgart (Feat. Jensen Interceptor),DJ Haus,Return 2 The Source - Feat Jensen Interceptor & SHED,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Return 2 The Source - Feat Jensen Interceptor & SHED - 01 Stuttgart (Feat. Jensen Interceptor).mp3,103.359375,"-104.03538,69.120384,19.294321,32.699623,11.524967,31.418156,-3.0398796,21.65715,-2.7752705,11.507552,2.3403358,7.0268435,0.32769138,4.853424,-0.32792798,3.6640809,-3.1603556,4.923907,-2.220449,3.1426513"
Bit Too Deep (SHED Remix),DJ Haus,Return 2 The Source - Feat Jensen Interceptor & SHED,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Return 2 The Source - Feat Jensen Interceptor & SHED - 02 Bit Too Deep (SHED Remix).mp3,129.19921875,"-135.57721,65.15036,27.358536,31.056477,11.837829,21.813738,8.051538,15.366866,7.8825364,11.239081,5.515153,9.400782,8.132676,8.337106,4.1149955,6.2554317,-2.4846172,1.4121771,1.0984508,3.0312333"
Metrophosis,DJ Haus,Return 2 The Source - Feat Jensen Interceptor & SHED,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Return 2 The Source - Feat Jensen Interceptor & SHED - 03 Metrophosis.mp3,129.19921875,"-101.17594,41.951916,25.130583,36.635563,14.069233,22.48662,16.055122,21.119995,10.304488,13.593227,6.1273527,9.841979,2.9472256,6.861693,1.9917797,5.788212,1.3280009,6.6619005,-0.75518715,4.0887823"
Return 2 The Source,DJ Haus,Return 2 The Source - Feat Jensen Interceptor & SHED,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Return 2 The Source - Feat Jensen Interceptor & SHED - 04 Return 2 The Source.mp3,129.19921875,"-96.38845,59.308243,9.643814,22.819988,6.297543,29.0198,4.6645164,12.617619,6.912182,10.054753,4.9693537,6.1514816,2.7363946,7.3884516,1.4629261,7.197775,0.2898466,6.8743825,1.99351,4.657741"
Bit Too Deep,DJ Haus,Return 2 The Source - Feat Jensen Interceptor & SHED,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Return 2 The Source - Feat Jensen Interceptor & SHED - 05 Bit Too Deep.mp3,129.19921875,"-145.84363,95.687126,-26.37292,11.021553,-1.9632089,-3.4621444,-13.561701,2.8686259,-1.3737441,-4.6471934,-8.09585,0.75184166,0.6895693,-3.9507372,-3.717652,0.389578,-4.2639937,-2.4756386,-5.323714,-4.353955"
Rhythm Division,DJ Haus,Rhythm Division + Subb-an Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Rhythm Division + Subb-an Remix - 01 Rhythm Division.mp3,135.99917763157896,"-130.46678,96.092255,-24.530392,10.569555,7.2618914,20.764349,-1.5859579,12.797265,6.485376,5.4375906,0.5842334,2.9977584,-1.3026203,2.4810429,2.962225,6.382399,0.2394281,3.296356,0.98181796,2.809632"
Rhythm Division (Subb-an Remix),DJ Haus,Rhythm Division + Subb-an Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Rhythm Division + Subb-an Remix - 02 Rhythm Division (Subb-an Remix).mp3,129.19921875,"-107.464226,61.449596,27.45692,28.702072,5.5359077,25.257034,0.72345406,18.651415,5.4407363,7.810774,3.1252584,6.1512575,-0.26692578,2.7323909,2.6838732,6.2747045,-1.6518754,4.334433,0.23793697,3.1275454"
Probability Troubles,DJ Haus,Rhythm Division + Subb-an Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Rhythm Division + Subb-an Remix - 03 Probability Troubles.mp3,129.19921875,"-140.84406,62.239372,21.118065,22.950266,13.148091,13.354437,2.984034,12.363522,2.0370378,11.8640375,-1.2002125,7.0044622,0.4333372,6.778095,1.2024504,3.4476647,-2.55277,-0.9971769,-2.5110705,2.2126732"
See U In My Dreams,DJ Haus,See U In My Dreams + LONE Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - See U In My Dreams + LONE Remix - 01 See U In My Dreams.mp3,123.046875,"-130.12318,60.047836,32.27109,9.866587,22.645782,10.223832,1.3080242,13.275682,0.22118773,10.466298,1.3960183,11.703888,2.2020628,9.792723,2.8515472,7.545755,0.7962299,6.678488,0.71868736,5.779335"
See U In My Dreams (LONE Remix),DJ Haus,See U In My Dreams + LONE Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - See U In My Dreams + LONE Remix - 02 See U In My Dreams (LONE Remix).mp3,123.046875,"-105.08801,64.306564,3.2440054,29.698654,18.923534,25.40855,13.695262,10.754523,5.901945,6.595532,0.30155808,1.4100887,2.0575438,2.218682,-1.0181575,7.432876,-3.5475304,2.0765882,0.12839028,2.9865432"
"Hey now, wait a minute",DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz Vol.1 - 01 Hey now, wait a minute.mp3",63.02400914634146,"-73.810844,54.67406,5.023805,28.632357,-23.85493,26.949389,-14.989666,15.844516,-0.38351554,9.257492,4.0790277,6.8311267,-1.1317208,-0.55426365,-0.45830715,3.6198955,5.662724,3.810295,4.3825316,3.4322388"
Dexterous,DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz Vol.1 - 02 Dexterous.mp3,123.046875,"-120.14801,60.02342,-2.5569255,37.29274,3.272572,22.028427,16.739157,12.047983,-6.795406,11.913191,-4.7128477,8.853249,-4.8992343,-0.2890747,1.8683435,1.7176416,-2.7178953,-3.9087186,-3.5157492,-1.2324622"
Tell Me,DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz Vol.1 - 03 Tell Me.mp3,103.359375,"-83.471245,58.550915,10.802966,16.680592,-11.975815,26.572989,0.4313644,8.1468725,15.117609,6.395678,2.7046704,2.2502296,8.764887,-0.5769732,9.877975,6.180199,5.4019656,8.833027,0.9898406,5.0084186"
Hurfdy Jam,DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz Vol.1 - 04 Hurfdy Jam.mp3,129.19921875,"-48.876003,57.5572,12.86033,34.5568,2.5794017,-3.15209,-5.7659144,6.353276,-4.8786864,1.2545223,-2.883593,1.4110487,-0.7595964,0.999797,-7.857469,9.505282,-7.182604,5.2170963,-12.329551,1.3857409"
Feelin' Reel,DJ Haus,"Space Jamz, Vol. 2",2016,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz, Vol. 2 - 01 Feelin' Reel.mp3",123.046875,"-142.6721,37.030834,27.661482,17.698513,16.570446,20.299957,11.442411,14.861012,-4.055069,6.7776685,0.80756783,4.765205,-5.544225,2.9380183,0.75798094,4.52531,-5.7182927,-3.5397892,-9.412405,0.5292573"
If U Want My Love,DJ Haus,"Space Jamz, Vol. 2",2016,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz, Vol. 2 - 02 If U Want My Love.mp3",123.046875,"-58.07602,50.872276,-9.75291,3.929609,-6.207449,9.0529995,4.9745965,10.039147,7.392602,8.514958,2.5274494,5.8733625,2.1179094,3.5497875,0.96205145,3.6775749,-1.1311262,5.5638785,-1.2568446,3.6342387"
Out A Space,DJ Haus,"Space Jamz, Vol. 2",2016,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz, Vol. 2 - 03 Out A Space.mp3",129.19921875,"-46.65388,26.224655,27.662107,24.564249,-1.5505108,7.15898,-5.2042294,6.062857,-2.3668263,1.8741752,1.0317012,3.5135603,0.63142604,2.3595507,-1.4209332,5.311619,1.3326772,1.6171538,-1.6280428,4.2310605"
I Can Feel It,DJ Haus,"Space Jamz, Vol. 2",2016,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Space Jamz, Vol. 2 - 04 I Can Feel It.mp3",99.38401442307692,"-66.51053,57.536182,3.4985127,12.819107,-6.839668,17.739458,-9.62124,4.078712,2.623625,-4.552425,7.4375167,2.6106336,0.14085348,4.7949157,-6.9100904,3.1292074,-3.9368496,2.2739377,1.4440818,1.3591046"
Clap Yo Handz,DJ Haus,Thug Houz Anthems Vol 3,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems Vol 3 - 01 Clap Yo Handz.mp3,63.02400914634146,"-81.13766,38.55572,0.5783801,33.62413,3.8053334,12.476014,-0.5562481,12.708101,1.3005185,-0.101284035,-1.2782317,4.4159026,3.0893695,7.711079,-1.2940558,5.0975018,-0.9293408,1.6691155,-0.6824371,2.7075863"
Feel It,DJ Haus,Thug Houz Anthems Vol 3,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems Vol 3 - 02 Feel It.mp3,129.19921875,"-107.46449,76.14985,7.577453,32.277977,9.959803,22.518688,0.051900204,10.342593,-1.787268,7.7351966,0.26708254,6.3398604,2.3695626,4.7211313,3.108214,6.990182,3.6871963,4.437135,-1.2015771,2.5279078"
Lez Get 2getha,DJ Haus,Thug Houz Anthems Vol 3,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems Vol 3 - 03 Lez Get 2getha.mp3,123.046875,"-122.084694,50.10524,14.364356,12.362986,5.754532,9.1683445,5.019653,7.4739428,3.4894655,10.617919,-0.29870397,6.755623,2.9981954,5.7503014,7.6058016,8.71771,2.5640066,6.268563,4.138208,7.9204164"
Addicted 2 Houz,DJ Haus,"Thug Houz Anthems, Vol. 2: Addicted 2 Houz",2013,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems, Vol. 2- Addicted 2 Houz - 01 Addicted 2 Houz.mp3",123.046875,"-102.110794,50.47939,6.9760795,24.537949,0.9718866,14.096861,-6.535422,12.759819,4.4689713,7.3162656,5.715339,1.5791867,-0.2810101,8.413236,-4.7410545,6.82015,-4.04749,1.2893505,2.7310035,0.22724965"
Smell Tha Phonk,DJ Haus,"Thug Houz Anthems, Vol. 2: Addicted 2 Houz",2013,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems, Vol. 2- Addicted 2 Houz - 02 Smell Tha Phonk.mp3",129.19921875,"-93.486465,31.45416,27.877453,26.839533,-0.9964648,17.056042,1.7298597,4.084302,-6.4064703,2.898499,-8.587635,-4.7757764,-4.494693,3.4944773,-0.50340366,1.7926084,-5.880392,-0.79693097,-4.021209,2.5656345"
Get Wid Tha Flow,DJ Haus,"Thug Houz Anthems, Vol. 2: Addicted 2 Houz",2013,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems, Vol. 2- Addicted 2 Houz - 03 Get Wid Tha Flow.mp3",123.046875,"-124.09534,45.07387,35.92703,29.45973,0.83279437,15.466496,-0.8653078,8.345176,-3.6183043,6.5294056,-0.55673134,6.7976904,1.6295774,4.4845133,4.631495,4.654609,-4.673955,0.96512127,-0.79398656,3.0460594"
Touch Ur Boody,DJ Haus,"Thug Houz Anthems, Vol. 2: Addicted 2 Houz",2013,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus/DJ Haus - Thug Houz Anthems, Vol. 2- Addicted 2 Houz - 04 Touch Ur Boody.mp3",129.19921875,"-74.9904,42.56344,14.817828,29.314611,7.4515524,15.546102,-4.698126,1.941257,-2.2862754,3.9910982,-4.8424006,1.1926938,-2.5184145,2.0065575,-3.1160066,2.0107214,-4.717505,-1.8816396,-2.5961742,1.4612739"
Too Much Data,DJ Haus,Too Much Data + Patrick Topping & DJ Boneyard Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Too Much Data + Patrick Topping & DJ Boneyard Remixes - 01 Too Much Data.mp3,129.19921875,"-142.49533,79.87095,13.976108,34.04354,4.722663,18.181368,5.045358,11.535,2.9653966,8.89097,2.0161066,5.785759,2.2875524,3.1726413,1.3367275,3.56139,-0.9164673,3.2209253,0.8621313,5.072328"
Too Much Data (Patrick Topping Remix),DJ Haus,Too Much Data + Patrick Topping & DJ Boneyard Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Too Much Data + Patrick Topping & DJ Boneyard Remixes - 02 Too Much Data (Patrick Topping Remix).mp3,129.19921875,"-171.57886,73.4428,5.868039,31.560255,11.183594,24.103859,11.877285,16.336267,7.7104974,9.361644,2.2969594,5.3020225,1.1859088,2.948277,1.8522168,3.3985846,1.4053422,1.9222718,-0.08030999,3.7827413"
Too Much Data (DJ Boneyard Remix),DJ Haus,Too Much Data + Patrick Topping & DJ Boneyard Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Too Much Data + Patrick Topping & DJ Boneyard Remixes - 03 Too Much Data (DJ Boneyard Remix).mp3,135.99917763157896,"-69.76867,95.94405,11.0539255,34.494072,5.034574,10.673691,8.0195465,7.4153147,1.264068,2.8159587,-1.6099398,2.846381,-3.9799552,2.2831862,-5.4732366,0.9935443,-3.9371421,-1.9959112,-5.1857557,2.0545378"
Turn The Box Up,DJ Haus,Turn The Box Up + KETTAMA & VONDA7 Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Turn The Box Up + KETTAMA & VONDA7 Remixes - 01 Turn The Box Up.mp3,129.19921875,"-115.77504,79.44496,12.244504,18.332563,-1.9191415,12.399046,2.593468,10.94963,0.7989137,3.1866744,2.3128479,6.38545,0.6309152,5.7365737,-2.6754894,4.6259203,0.087659314,2.4964225,-0.97224015,3.0636463"
Turn The Box Up (KETTAMA Graveyard Mix),DJ Haus,Turn The Box Up + KETTAMA & VONDA7 Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Turn The Box Up + KETTAMA & VONDA7 Remixes - 02 Turn The Box Up (KETTAMA Graveyard Mix).mp3,129.19921875,"-127.48202,103.66081,31.457272,15.462327,-0.5769822,11.60388,0.28758436,8.891755,-0.36124247,5.20362,1.1607614,8.183017,1.855947,7.0529323,-0.02985194,5.9901805,-0.38065195,1.5233533,-0.2630503,2.3176723"
Turn The Box Up (VONDA7 Fox Out Of The Box Remix),DJ Haus,Turn The Box Up + KETTAMA & VONDA7 Remixes,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Turn The Box Up + KETTAMA & VONDA7 Remixes - 03 Turn The Box Up (VONDA7 Fox Out Of The Box Remix).mp3,129.19921875,"-99.237854,70.82528,0.48382738,25.826195,5.023825,29.20724,5.1444616,10.814783,1.4064821,9.121478,4.872338,7.722733,2.9486794,7.849376,1.2310634,5.024982,0.8484018,3.0213873,-2.652965,3.7727437"
Yeah!,DJ Haus,Yeah! / Head Work,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Yeah! - Head Work - 01 Yeah!.mp3,86.1328125,"-80.788574,58.823044,8.786023,27.935112,5.991408,14.493039,-1.9352185,4.794018,-8.140639,1.4030309,-5.437776,1.1162944,-2.973051,0.7643833,-1.614835,3.7471924,-1.9832735,1.7243941,-4.0012608,2.036493"
Head Work,DJ Haus,Yeah! / Head Work,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus/DJ Haus - Yeah! - Head Work - 02 Head Work.mp3,129.19921875,"-108.45498,47.6813,-16.266724,7.7848,-4.752409,12.537417,5.974352,7.173818,-6.12936,3.828135,2.7239912,5.0556145,4.1900167,10.465333,0.97740465,5.52972,0.5560746,3.7764657,3.284762,4.526021"
"Hey now, wait a minute",DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Haus - Space Jamz Vol.1/DJ Haus - Space Jamz Vol.1 - 01 Hey now, wait a minute.mp3",63.02400914634146,"-73.810844,54.67406,5.023805,28.632357,-23.85493,26.949389,-14.989666,15.844516,-0.38351554,9.257492,4.0790277,6.8311267,-1.1317208,-0.55426365,-0.45830715,3.6198955,5.662724,3.810295,4.3825316,3.4322388"
Dexterous,DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus - Space Jamz Vol.1/DJ Haus - Space Jamz Vol.1 - 02 Dexterous.mp3,123.046875,"-120.14801,60.02342,-2.5569255,37.29274,3.272572,22.028427,16.739157,12.047983,-6.795406,11.913191,-4.7128477,8.853249,-4.8992343,-0.2890747,1.8683435,1.7176416,-2.7178953,-3.9087186,-3.5157492,-1.2324622"
Tell Me,DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus - Space Jamz Vol.1/DJ Haus - Space Jamz Vol.1 - 03 Tell Me.mp3,103.359375,"-83.471245,58.550915,10.802966,16.680592,-11.975815,26.572989,0.4313644,8.1468725,15.117609,6.395678,2.7046704,2.2502296,8.764887,-0.5769732,9.877975,6.180199,5.4019656,8.833027,0.9898406,5.0084186"
Hurfdy Jam,DJ Haus,Space Jamz Vol.1,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Haus - Space Jamz Vol.1/DJ Haus - Space Jamz Vol.1 - 04 Hurfdy Jam.mp3,129.19921875,"-48.876003,57.5572,12.86033,34.5568,2.5794017,-3.15209,-5.7659144,6.353276,-4.8786864,1.2545223,-2.883593,1.4110487,-0.7595964,0.999797,-7.857469,9.505282,-7.182604,5.2170963,-12.329551,1.3857409"
Let It Roll,DJ Jubilee 1997,Cosmik Connection Vol.5,2023,,Unknown to the Unknown,/mnt/d/UTTU/DJ Jubilee 1997/DJ Jubilee 1997 - Cosmik Connection Vol.5 - 02 Let It Roll.mp3,83.35433467741936,"-66.9706,31.591797,27.042479,27.736902,3.710249,14.001823,3.7084317,9.623974,-1.2154958,8.5285635,3.9754422,6.166653,-2.4238727,4.0155964,0.041681435,5.242482,-5.660237,-1.1249735,-4.0254292,1.4979551"
ZZZ - UZKZOWZ (No Way Back Mix),DJ Nozaki Presents ZZZ,UZKZOWZ,2018,,Unknown to the Unknown,/mnt/d/UTTU/DJ Nozaki Presents ZZZ/DJ Nozaki Presents ZZZ - UZKZOWZ - 01 ZZZ - UZKZOWZ (No Way Back Mix).mp3,123.046875,"-30.824091,47.70063,24.599474,14.768181,4.794564,10.334619,2.2176108,8.190922,0.69322294,4.6464996,-1.350713,2.1960824,-3.3018422,3.3213763,-2.2168062,3.4062345,-4.81044,0.37525445,-5.1698837,4.369176"
ZZZ - UZKZOWZ (Stir All Nite Mix),DJ Nozaki Presents ZZZ,UZKZOWZ,2018,,Unknown to the Unknown,/mnt/d/UTTU/DJ Nozaki Presents ZZZ/DJ Nozaki Presents ZZZ - UZKZOWZ - 02 ZZZ - UZKZOWZ (Stir All Nite Mix).mp3,123.046875,"7.567364,48.73322,12.231607,10.616975,5.082861,13.131733,10.752362,9.952689,2.3239892,6.98373,-0.88357973,5.29191,-1.6911472,3.526915,-4.019735,3.382791,-2.8808694,3.774512,-5.16677,2.495631"
ZZZ - UZKZOWZ (DJ Haus Body Heat Mix),DJ Nozaki Presents ZZZ,UZKZOWZ,2018,,Unknown to the Unknown,/mnt/d/UTTU/DJ Nozaki Presents ZZZ/DJ Nozaki Presents ZZZ - UZKZOWZ - 03 ZZZ - UZKZOWZ (DJ Haus Body Heat Mix).mp3,123.046875,"-110.06795,33.488514,32.43447,2.062893,6.7552743,14.137935,0.614769,5.331574,2.6562943,8.827877,-1.8254602,1.6669741,0.8575291,3.060729,2.4897118,5.5632954,-3.7228286,2.009932,0.98602617,4.5089927"
A Day At The Lake With Carlos,DJ Octopus,Cycling EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Cycling EP - 01 A Day At The Lake With Carlos.mp3,117.45383522727273,"-144.44641,86.194214,59.381134,32.705734,11.932647,17.29998,-2.3421764,2.7177477,-10.593162,-0.052863542,-7.063028,-5.770373,-2.1724763,-1.0360382,-3.9198356,1.7404124,-0.15310632,2.4345598,0.45536423,5.245776"
Burnin',DJ Octopus,Cycling EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Cycling EP - 02 Burnin'.mp3,129.19921875,"-170.14737,103.68433,31.86099,23.224663,8.730467,16.820364,11.536048,16.25071,6.237071,14.598247,7.0337234,9.448614,8.174136,8.556532,2.6115708,6.7793427,5.5455704,6.120812,2.305041,1.1197374"
Smack My Pitch Up,DJ Octopus,Cycling EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Cycling EP - 03 Smack My Pitch Up.mp3,123.046875,"-75.692,68.40211,8.339842,49.179924,22.669758,16.100069,10.004134,9.0002165,1.1845762,13.340819,-1.3608553,8.916243,-2.9540691,2.6817632,-2.2243304,3.5612097,-4.186757,4.3379097,-0.05552297,4.0768495"
Cycling,DJ Octopus,Cycling EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Cycling EP - 04 Cycling.mp3,129.19921875,"-96.31081,147.27942,12.333042,12.055099,-0.8068427,13.303325,4.486013,3.144795,-6.1153045,4.350503,-1.2173129,1.6439574,-1.347986,2.4608915,-1.7064861,3.932879,-2.3386586,0.22168684,-2.4052272,1.6368026"
Wet Coast,DJ Octopus,Wet Coast EP (Free Download),2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Wet Coast EP (Free Download) - 01 Wet Coast.mp3,83.35433467741936,"-34.172497,92.03604,-1.7586842,18.89759,-2.3518736,10.972911,7.644793,9.246182,0.41202387,5.6944633,-1.6885067,3.1995385,0.09004426,2.4006388,0.072498314,4.718092,-1.1911188,4.436147,0.5983439,3.069657"
Throne Keen,DJ Octopus,Wet Coast EP (Free Download),2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Wet Coast EP (Free Download) - 02 Throne Keen.mp3,66.25600961538461,"-98.98981,123.50187,1.9191867,-11.3044615,5.875575,17.795256,12.165337,14.718513,7.5579987,9.661884,0.2924903,0.89265895,4.7568264,9.59187,6.3527265,6.4073467,0.9489351,7.3344736,4.6739244,5.762399"
Morning Lab,DJ Octopus,Wet Coast EP (Free Download),2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Wet Coast EP (Free Download) - 03 Morning Lab.mp3,83.35433467741936,"-74.50557,80.99034,9.0710535,10.77587,7.328258,14.209982,-3.1691606,14.130902,1.9620839,8.276891,-5.1125555,1.3209137,2.0886743,7.4535766,4.887693,4.374033,-1.6830688,3.057156,2.16136,4.158403"
Bug Lady,DJ Octopus,Wet Coast EP (Free Download),2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ Octopus/DJ Octopus - Wet Coast EP (Free Download) - 04 Bug Lady.mp3,63.02400914634146,"-1.2318422,70.13275,20.897081,15.7589445,-1.3529289,13.899788,0.7747231,8.885491,-3.9060774,8.081155,-4.853045,5.7935925,-1.680762,3.708055,0.88334364,3.881748,-0.26520184,5.2856603,-2.7279842,3.1183453"
Feeding The Fad,DJ Overdose,Feeding The Fad EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Overdose/DJ Overdose - Feeding The Fad EP - 01 Feeding The Fad.mp3,135.99917763157896,"-56.674637,74.19546,-7.4836,48.866035,-5.9040337,20.534204,1.9585066,12.312645,-1.3132389,4.206724,-0.8974993,6.2483473,1.5324057,4.224083,-0.66947836,3.0970886,-2.7164528,0.37734193,0.57106984,1.858207"
Hip To The Hype,DJ Overdose,Feeding The Fad EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Overdose/DJ Overdose - Feeding The Fad EP - 02 Hip To The Hype.mp3,135.99917763157896,"-28.263271,57.764164,-16.789253,49.77449,13.631621,30.112932,17.543287,26.557299,-1.355262,8.097235,-1.3672032,12.748584,9.960708,4.129761,-1.3791318,4.7342277,-1.0935302,1.5997759,2.7917125,11.564836"
Probably Too Commercial,DJ Overdose,Feeding The Fad EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Overdose/DJ Overdose - Feeding The Fad EP - 03 Probably Too Commercial.mp3,86.1328125,"-55.419888,54.634525,-9.79422,58.25587,-5.7534313,33.596764,1.429932,24.302094,6.1072845,13.835884,3.8269463,10.862949,4.138669,7.7050185,0.74640375,7.714853,3.2374244,5.92222,2.7924688,5.124664"
Lloyd Goes To Mars (Rave O Nine Mix),DJ Plant Texture,Lloyd Goes To Mars,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture/DJ Plant Texture - Lloyd Goes To Mars - 01 Lloyd Goes To Mars (Rave O Nine Mix).mp3,123.046875,"-105.763855,73.18706,-24.188702,63.582985,18.935167,21.052717,17.198017,21.84927,13.866002,14.550156,7.9654317,8.48978,4.078898,3.4649746,0.3756985,2.9885094,-1.9105797,0.45424113,-3.9657867,0.018839903"
Lloyd Goes To Mars (Jungle Mix),DJ Plant Texture,Lloyd Goes To Mars,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture/DJ Plant Texture - Lloyd Goes To Mars - 02 Lloyd Goes To Mars (Jungle Mix).mp3,99.38401442307692,"-71.49997,84.32337,3.7965949,38.818092,-6.878061,18.79391,-2.993153,9.1866455,2.3246136,7.1691113,0.39526898,0.376201,-0.32247,0.9680975,2.283053,2.3279986,1.464813,3.4334235,2.314913,2.8111148"
Lloyd Goes To Mars (Slow 08 Mix),DJ Plant Texture,Lloyd Goes To Mars,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture/DJ Plant Texture - Lloyd Goes To Mars - 03 Lloyd Goes To Mars (Slow 08 Mix).mp3,143.5546875,"-72.8436,114.80643,19.067295,25.762022,1.9057605,12.854385,-2.2872186,10.973223,8.067495,11.937004,5.197025,6.793481,4.6625905,7.7540803,2.3404348,6.615861,0.96267635,5.8500237,-1.1267971,4.282243"
Lloyd Goes To Mars (Simoncino Remix),DJ Plant Texture,Lloyd Goes To Mars,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture/DJ Plant Texture - Lloyd Goes To Mars - 04 Lloyd Goes To Mars (Simoncino Remix).mp3,123.046875,"-73.448006,100.02373,15.393364,15.00022,3.9525309,10.08607,2.2915947,4.1773562,0.8744824,1.4257357,-3.0181503,1.341267,-0.25220895,0.21516158,-3.3385506,0.07423652,-4.4412856,-1.2477078,-4.071672,-2.1414013"
Lloyd Goes To Mars (Simoncino Deep Dub),DJ Plant Texture,Lloyd Goes To Mars,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture/DJ Plant Texture - Lloyd Goes To Mars - 05 Lloyd Goes To Mars (Simoncino Deep Dub).mp3,123.046875,"-116.25103,98.01001,26.355793,26.845284,5.9543085,14.566265,6.021633,15.599786,1.4567839,9.776745,1.9251698,7.135321,-5.2414665,3.2556918,7.1591907,6.6654162,2.145875,6.961275,0.41057932,-4.631277"
Lloyd Goes To Mars (Simoncino Bonus Beat),DJ Plant Texture,Lloyd Goes To Mars,2017,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture/DJ Plant Texture - Lloyd Goes To Mars - 06 Lloyd Goes To Mars (Simoncino Bonus Beat).mp3,129.19921875,"-102.93766,93.79818,44.845127,36.940895,16.745243,24.39322,10.651369,14.803804,4.052497,9.505939,3.5592875,7.8358727,3.6199112,6.921004,2.6213877,1.888197,-4.783769,0.9168262,-2.1242483,0.7083745"
I Don't Dance,DJ Plant Texture,I Don't Dance / Cat Ears,2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture & DJ Shark/DJ Plant Texture - I Don't Dance - Cat Ears - 01 I Don't Dance.mp3,129.19921875,"-82.13126,84.4475,44.48234,35.256927,2.6399868,32.00919,1.911076,16.85053,-1.2165173,10.3826885,-0.92800957,5.7963476,-0.2553726,4.290676,0.57183117,1.4948106,-6.1729593,0.024728851,-3.1039793,0.25919986"
Cat Ears,DJ Shark,I Don't Dance / Cat Ears,2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ Plant Texture & DJ Shark/DJ Shark - I Don't Dance - Cat Ears - 02 Cat Ears.mp3,73.828125,"-78.117035,22.069874,16.859888,23.284243,7.125593,13.247335,-5.7472234,7.716373,-6.204115,4.3320675,-2.516673,2.6640139,-3.481573,-1.0175289,-3.2224407,1.1270732,-4.7295246,2.2038856,1.6829234,4.3610945"
All Junglist,DJ Q,All Junglist,2012,,Unknown to the Unknown,/mnt/d/UTTU/DJ Q/DJ Q - All Junglist - 01 All Junglist.mp3,135.99917763157896,"-54.842472,48.492355,14.458078,17.98997,5.7487593,15.971535,4.611896,12.247238,8.318375,12.151461,4.137778,6.1249022,6.064412,7.3396807,4.4349923,4.7892876,3.7209165,5.019357,4.318814,3.025488"
Will I Ever Be Free,DJ Q,All Junglist,2012,,Unknown to the Unknown,/mnt/d/UTTU/DJ Q/DJ Q - All Junglist - 02 Will I Ever Be Free.mp3,69.83741554054055,"-45.39363,52.679104,-2.427747,25.6037,7.5290008,14.777163,1.6400234,9.275749,0.01369152,8.520588,1.5793394,6.555287,1.7849132,4.4966035,0.57576936,1.4608148,-2.997689,1.3981127,-2.852178,6.9173527"
99,DJ Q,All Junglist,2012,,Unknown to the Unknown,/mnt/d/UTTU/DJ Q/DJ Q - All Junglist - 03 99.mp3,66.25600961538461,"-100.33041,57.896275,4.0676346,27.11519,0.4823924,18.179985,-0.26795223,6.5385804,-1.7163846,4.3153353,0.33189252,4.693061,-0.32432312,0.7020044,-4.639754,0.8272033,-2.6890492,3.2305744,-0.30901477,3.0107193"
Freee (House Mix),DJ STEAW,Freee,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Freee - 01 Freee (House Mix).mp3,129.19921875,"-131.23454,67.18638,27.090403,27.237267,11.768581,17.059412,10.5609455,10.7701435,3.1702306,9.650608,5.1212416,7.139746,6.5831547,9.094164,3.1592858,4.1816716,-0.79987985,5.3872547,2.2637665,3.0072432"
Freee (Original Mix),DJ STEAW,Freee,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Freee - 02 Freee (Original Mix).mp3,107.666015625,"-159.21075,60.259686,22.411955,25.11948,7.2669463,17.779247,7.344155,10.366794,4.3168077,7.691109,1.1175493,3.6459193,-1.3697814,1.2341946,-0.40427297,0.22286966,-3.8159914,1.3339548,-2.4086254,2.134661"
Walk In Broadway,DJ STEAW,Freee,2020,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Freee - 03 Walk In Broadway.mp3,123.046875,"-147.01125,88.64376,37.178093,34.454372,14.890291,27.073704,10.949727,11.203974,5.172787,13.391294,3.1483803,5.277637,2.2393637,5.859672,5.678777,5.5165796,-4.5493045,2.1793036,2.5649621,3.261973"
Get Down (Original Mix),DJ STEAW,Frogman EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Frogman EP - 01 Get Down (Original Mix).mp3,123.046875,"-107.86616,55.4626,-1.8120031,21.490025,9.4403715,29.896563,5.7644367,10.41981,0.19473709,8.92951,4.1461,2.989366,-0.05780683,6.3185205,5.532863,4.3026786,-4.138263,3.0571983,2.5352519,4.6883125"
Get Down (Dub Mix),DJ STEAW,Frogman EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Frogman EP - 02 Get Down (Dub Mix).mp3,123.046875,"-120.39641,73.08152,28.346697,39.50394,12.408136,27.942461,11.187976,13.845161,8.924828,10.341911,3.6084297,5.415116,3.7716458,6.3783755,5.912969,0.97693986,-1.5694308,0.7749521,-3.3422399,5.34181"
Frogman,DJ STEAW,Frogman EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Frogman EP - 03 Frogman.mp3,123.046875,"-79.1767,41.035683,8.195561,21.985138,2.1722522,32.771538,3.707087,11.707037,3.8560326,13.94957,5.629614,10.085781,7.499378,10.482918,4.4983287,5.232555,0.95581216,8.165487,1.1614376,5.0858274"
Heaven,DJ STEAW,Heaven EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Heaven EP - 01 Heaven.mp3,123.046875,"-103.67612,84.67384,29.400166,25.220476,17.181269,27.500868,8.245056,13.288282,5.162912,7.999525,-0.6082187,0.9828172,-1.3192432,-1.4020079,-2.891889,3.764073,-4.5533376,-2.7415552,-3.8156826,-1.4277627"
I See You,DJ STEAW,Heaven EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Heaven EP - 02 I See You.mp3,123.046875,"-89.98544,65.63899,1.7885115,37.179302,14.28026,23.417645,10.446789,15.676898,5.20426,10.533847,4.260736,8.288488,3.5393414,8.560318,3.9170182,6.5434055,0.8423451,3.9181492,0.8044694,5.4662623"
Picpus,DJ STEAW,Heaven EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/DJ STEAW/DJ STEAW - Heaven EP - 03 Picpus.mp3,123.046875,"-109.48258,62.0034,6.4911904,31.238491,10.762398,32.99611,13.508577,20.847527,3.3780165,9.628957,1.1494932,10.430757,5.3474703,5.3706803,2.47482,4.1767926,-3.1190922,0.25656772,2.1488783,8.09135"
Assassin,DJ Stingray,Assassin,2011,,Unknown to the Unknown,/mnt/d/UTTU/DJ Stingray/DJ Stingray - Assassin - 01 Assassin.mp3,73.828125,"-66.95547,99.89517,-2.4083734,12.635408,11.651667,20.663172,4.3214774,6.4972982,13.545276,13.634169,8.174838,9.464315,0.79666555,10.80845,5.163855,13.048242,6.9277377,5.4142427,2.59955,3.9427845"
Cryptic,DJ Stingray,Imping Is Easy EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Stingray/DJ Stingray - Imping Is Easy EP - 01 Cryptic.mp3,69.83741554054055,"-135.16057,97.017944,15.286982,27.263205,20.29493,19.13289,13.389785,15.570916,9.643191,18.491179,10.2507,13.890575,7.995648,7.7380238,1.3204986,4.4675145,-0.19721396,3.2805083,0.072082624,5.7821684"
Know Your Enemy,DJ Stingray,Imping Is Easy EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Stingray/DJ Stingray - Imping Is Easy EP - 02 Know Your Enemy.mp3,78.30255681818181,"-117.26658,84.16044,23.152523,53.685028,-1.0887611,24.287163,7.9847465,20.896025,5.5991025,16.30681,-0.19460028,6.5503488,2.4301693,10.328499,2.1865141,5.678748,-2.7012434,-2.9568608,-3.208154,-2.6141775"
Solitude,DJ Stingray,Imping Is Easy EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Stingray/DJ Stingray - Imping Is Easy EP - 03 Solitude.mp3,143.5546875,"-88.71559,71.136734,-22.943235,43.579803,0.37536043,16.200481,18.105003,17.222183,-2.2947798,12.324924,1.5879647,9.792711,9.775011,8.774172,2.2952166,2.8554943,-2.8820758,2.7626698,3.6086483,2.8731587"
Unknown To The Unknown DJ Mix,DJ Stingray,,2019,,Unknown to the Unknown,/mnt/d/UTTU/DJ Stingray/DJ Stingray - Unknown To The Unknown DJ Mix.mp3,151.99908088235293,"-81.954185,71.01232,21.690548,17.49763,11.608895,12.011395,1.9469374,7.3309536,2.8523452,8.071462,-0.24261503,7.33304,2.712054,6.27256,0.12973082,4.57181,1.2348744,4.65943,-0.8294334,2.240008"
Assassin,DJ Stingray,Assassin,2011,,Unknown to the Unknown,/mnt/d/UTTU/DJ Stingray - Assassin/DJ Stingray - Assassin - 01 Assassin.mp3,73.828125,"-66.95547,99.89517,-2.4083734,12.635408,11.651667,20.663172,4.3214774,6.4972982,13.545276,13.634169,8.174838,9.464315,0.79666555,10.80845,5.163855,13.048242,6.9277377,5.4142427,2.59955,3.9427845"
Hard Workin' Trax 1,DJ Vague,Hard Workin' Trax,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Vague/DJ Vague - Hard Workin' Trax - 01 Hard Workin' Trax 1.mp3,129.19921875,"-59.725365,49.20504,0.67935103,22.683716,17.972532,41.274776,14.442832,12.81862,6.294467,7.1228914,-1.1196848,2.5261314,1.3008354,4.515087,-3.0109015,3.5331357,-2.5335083,0.69489413,-0.0700453,-2.9198508"
Hard Workin' Trax 2,DJ Vague,Hard Workin' Trax,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Vague/DJ Vague - Hard Workin' Trax - 02 Hard Workin' Trax 2.mp3,135.99917763157896,"-63.043053,52.793404,-16.807102,-9.483261,1.2357534,10.688766,2.8245535,8.493737,5.2035203,8.284222,1.3363643,5.473512,2.8511152,6.2781963,5.2249465,8.962307,2.6169167,7.839596,3.9817333,5.3071575"
Hard Workin' Trax 3,DJ Vague,Hard Workin' Trax,2014,,Unknown to the Unknown,/mnt/d/UTTU/DJ Vague/DJ Vague - Hard Workin' Trax - 03 Hard Workin' Trax 3.mp3,143.5546875,"-7.6936927,51.409225,-11.250351,29.293655,-9.729359,11.080973,1.1454195,6.0950136,-0.41798174,5.6248016,-2.895849,3.626257,2.8899164,9.965111,7.4997387,14.059617,7.615924,7.265716,2.2490056,3.1209471"
Stop Fidgeting,DJ Wiggle,Stop Fidgeting,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Stop Fidgeting - 01 Stop Fidgeting.mp3,67.99958881578948,"-104.123856,36.84376,-14.642163,24.71387,-3.8113873,14.870913,-1.8208392,7.265984,1.1592842,5.75542,-1.6433101,3.350012,-3.3556511,0.8428343,-2.5166628,3.0738864,0.24905035,5.307956,3.7020977,9.048079"
Voice Mail,DJ Wiggle,Stop Fidgeting,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Stop Fidgeting - 02 Voice Mail.mp3,129.19921875,"-105.72707,81.43888,-6.4933434,31.997889,-16.168821,16.153893,-9.901074,5.4435587,-11.554183,5.313235,-5.958887,0.47303206,-3.7936404,1.0833176,-0.3338574,0.9436965,-6.9225774,-1.1849095,-2.8187459,0.9943806"
Hybrid Spirit,DJ Wiggle,Stop Fidgeting,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Stop Fidgeting - 03 Hybrid Spirit.mp3,86.1328125,"-144.0769,67.713715,-19.605846,24.362917,9.721357,22.009233,5.694212,11.743296,8.3356905,10.269976,-0.076900214,5.176329,1.9481056,3.6778574,0.85419154,2.8056543,-3.8341324,-2.9079847,-0.026261007,5.76375"
The Spirit,DJ Wiggle,The Spirit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - The Spirit - 01 The Spirit.mp3,67.99958881578948,"-105.288025,41.55857,14.072862,53.615765,3.3099256,24.254541,-3.0255983,12.617218,0.12390353,6.9353313,-1.8623923,8.892085,-2.6760426,5.025143,-0.3123104,2.4376423,-2.8255517,3.3573349,-4.2949553,4.0678353"
Pizza Scarface,DJ Wiggle,The Spirit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - The Spirit - 02 Pizza Scarface.mp3,135.99917763157896,"-111.30007,68.45016,4.051907,30.629738,2.612621,13.370735,1.4006529,6.326718,1.0420451,6.8419304,-0.25813526,3.4816415,0.5096795,4.217283,-2.2134597,2.8864102,-2.821027,7.4419174,1.5760022,1.9981933"
Deepin It,DJ Wiggle,The Spirit,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - The Spirit - 03 Deepin It.mp3,135.99917763157896,"-123.496895,70.63923,13.25381,29.103428,-5.977686,13.47131,2.9756362,5.2996345,-2.6680946,0.4411228,-3.991153,0.1774772,-2.609768,-0.7339725,-0.29471973,-1.4502192,-3.7516913,4.6225863,-0.42741567,1.6807135"
Coming On,DJ Wiggle,Wiggle,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Wiggle - 01 Coming On.mp3,135.99917763157896,"-87.25166,82.85474,23.61498,28.273693,-2.2388403,25.484497,-0.26323023,12.093597,-3.264416,9.431302,3.929959,3.847791,3.83053,2.1935225,4.7514415,5.758049,0.11219406,4.357499,6.563048,10.367357"
Cheese & Tickle,DJ Wiggle,Wiggle,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Wiggle - 02 Cheese & Tickle.mp3,135.99917763157896,"-92.29783,60.398083,22.20656,35.054123,16.368896,15.0595455,-1.4725945,6.4733815,-2.6273112,2.0687432,-0.39558476,2.523089,-1.552145,1.66798,-1.5873902,5.3102846,-0.14217079,2.6280847,-1.4768449,1.8028766"
Tanker,DJ Wiggle,Wiggle,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Wiggle - 03 Tanker.mp3,67.99958881578948,"-51.558365,88.60073,15.651483,9.989422,6.4040256,10.829416,6.950615,10.193402,3.5657947,4.408143,2.7868116,4.090663,-0.39264515,4.348919,1.4712976,3.054058,-0.99983656,5.8599105,0.84172434,0.40226293"
Wiggle,DJ Wiggle,Wiggle,2021,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Wiggle - 04 Wiggle.mp3,135.99917763157896,"-112.4979,55.882984,57.110012,42.608917,1.4749582,18.410799,-10.632335,2.5780163,-9.41422,-7.4771276,-7.011377,1.9170362,0.081510745,3.2078815,1.6476821,4.8862834,0.99969566,4.778455,1.0452803,6.441556"
Wiggle VIP,DJ Wiggle,Wiggle VIP,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Wiggle VIP - 01 Wiggle VIP.mp3,135.99917763157896,"-38.825188,61.118477,17.32542,36.879692,10.106871,23.378855,-7.435187,11.693527,-1.7287512,6.011337,-2.4786453,6.792041,-0.10803226,2.9616382,-0.18483485,4.4983335,-2.9442997,4.013808,-0.18494461,1.8822507"
Cheese & Pickle,DJ Wiggle,Wiggle VIP,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle/DJ Wiggle - Wiggle VIP - 02 Cheese & Pickle.mp3,135.99917763157896,"-91.74551,23.92725,28.053408,34.80877,12.408414,15.292017,7.49422,2.3941958,-3.3363178,1.8163395,-0.19314152,4.6877503,3.5992491,10.364506,3.4104507,4.295653,0.89719105,5.8713164,-1.3480117,2.2395272"
Stop Fidgeting,DJ Wiggle,Stop Fidgeting,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle - Stop Fidgeting/DJ Wiggle - Stop Fidgeting - 01 Stop Fidgeting.mp3,67.99958881578948,"-104.123856,36.84376,-14.642163,24.71387,-3.8113873,14.870913,-1.8208392,7.265984,1.1592842,5.75542,-1.6433101,3.350012,-3.3556511,0.8428343,-2.5166628,3.0738864,0.24905035,5.307956,3.7020977,9.048079"
Voice Mail,DJ Wiggle,Stop Fidgeting,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle - Stop Fidgeting/DJ Wiggle - Stop Fidgeting - 02 Voice Mail.mp3,129.19921875,"-105.72707,81.43888,-6.4933434,31.997889,-16.168821,16.153893,-9.901074,5.4435587,-11.554183,5.313235,-5.958887,0.47303206,-3.7936404,1.0833176,-0.3338574,0.9436965,-6.9225774,-1.1849095,-2.8187459,0.9943806"
Hybrid Spirit,DJ Wiggle,Stop Fidgeting,2022,,Unknown to the Unknown,/mnt/d/UTTU/DJ Wiggle - Stop Fidgeting/DJ Wiggle - Stop Fidgeting - 03 Hybrid Spirit.mp3,86.1328125,"-144.0769,67.713715,-19.605846,24.362917,9.721357,22.009233,5.694212,11.743296,8.3356905,10.269976,-0.076900214,5.176329,1.9481056,3.6778574,0.85419154,2.8056543,-3.8341324,-2.9079847,-0.026261007,5.76375"
High Life,"DJ Y, Coco Bryce",High Life,2021,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Y, Coco Bryce/DJ Y, Coco Bryce - High Life - 01 High Life.mp3",80.74951171875,"-124.95354,85.4996,32.4591,26.999994,16.970985,14.566799,0.15614006,4.5120034,-4.4829383,3.4919672,-4.9879165,2.5561984,-1.3490807,2.5109549,-0.94149137,-1.3943181,-1.581596,1.1905489,-0.17440377,0.3849514"
Gutter Funk,"DJ Y, Coco Bryce",High Life,2021,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Y, Coco Bryce/DJ Y, Coco Bryce - High Life - 02 Gutter Funk.mp3",161.4990234375,"-41.07682,109.83234,8.897765,24.758032,6.5542407,14.670784,1.3414489,10.261152,-1.8456215,8.915293,-0.67314494,5.0679398,-0.14364287,3.8121476,0.9403569,2.7091525,3.0559518,3.85827,0.23469947,2.519491"
Modern Wank,"DJ Y, Coco Bryce",High Life,2021,,Unknown to the Unknown,"/mnt/d/UTTU/DJ Y, Coco Bryce/DJ Y, Coco Bryce - High Life - 03 Modern Wank.mp3",107.666015625,"-23.58244,54.940823,16.405268,43.002876,1.930337,17.726744,2.0372174,8.381206,0.41031522,4.1609864,-0.6875585,4.710799,-2.216994,2.7108715,-0.7618443,0.03304865,-0.18270622,1.2977802,-0.85174733,1.5462621"
B Leave,Dubbel Dutch,B Leave + Nguzunguzu Remix,2011,,Unknown to the Unknown,/mnt/d/UTTU/Dubbel Dutch/Dubbel Dutch - B Leave + Nguzunguzu Remix - 01 B Leave.mp3,92.28515625,"-116.06644,64.63283,9.519976,11.216678,0.66339874,7.103009,-0.18540415,4.816194,-6.4158983,4.408289,-1.271519,6.573982,-0.30199355,4.132985,0.23829046,3.727908,1.1738249,3.5127568,1.314665,2.8906496"
Dubbel Dutch - B Leave (Nguzunguzu Remix),Dubbel Dutch,B Leave + Nguzunguzu Remix,2011,,Unknown to the Unknown,/mnt/d/UTTU/Dubbel Dutch/Dubbel Dutch - B Leave + Nguzunguzu Remix - 02 Dubbel Dutch - B Leave (Nguzunguzu Remix).mp3,135.99917763157896,"-130.0465,89.79511,4.786304,6.004246,-3.8284805,5.7382627,7.795397,17.584593,7.827951,10.449063,1.9880038,5.1784067,4.572798,6.076191,-3.67448,-1.0529028,-4.7861295,-0.45210525,0.20610484,4.6213694"
Dubbel Dutch - B Leave (DJ Q & TS7 Remix),Dubbel Dutch,B Leave DJ Q & TS7 Remix,2011,,Unknown to the Unknown,/mnt/d/UTTU/Dubbel Dutch/Dubbel Dutch - B Leave DJ Q & TS7 Remix - 01 Dubbel Dutch - B Leave (DJ Q & TS7 Remix).mp3,69.83741554054055,"-55.615566,55.68119,32.988914,17.300665,5.128645,13.034297,7.5672207,7.178494,0.5723279,9.762398,0.26847038,7.8272734,3.2181427,6.1541,-1.699997,2.7062483,-5.2502427,3.075043,-0.8014001,2.3142817"
Brake (2012 Mix),Duncan Powell,Brake,2012,,Unknown to the Unknown,/mnt/d/UTTU/Duncan Powell/Duncan Powell - Brake - 01 Brake (2012 Mix).mp3,66.25600961538461,"-111.49231,57.895535,21.981016,16.130102,5.4734693,14.237293,0.6017925,9.774854,4.555176,8.329676,4.910356,7.8771033,1.6782467,4.912984,0.46241772,4.3906074,-1.7526811,4.4993963,-1.207993,2.0463707"
Brake (Original Mix),Duncan Powell,Brake,2012,,Unknown to the Unknown,/mnt/d/UTTU/Duncan Powell/Duncan Powell - Brake - 02 Brake (Original Mix).mp3,129.19921875,"-141.94366,55.71598,-21.065914,7.514337,1.3927542,15.599705,6.6911917,5.718516,-1.3062332,1.1447952,-0.7299308,3.5076706,-1.4424978,1.0967925,-3.1420362,1.2065115,-1.183872,5.7380967,3.8167517,4.3723764"
Astral Projection,e-freq,Astral Projection,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Astral Projection - 01 Astral Projection.mp3,123.046875,"-107.50263,27.949713,27.153688,17.902515,11.225312,16.235462,2.7934625,9.645509,2.0455513,6.6560216,-2.4086583,9.25442,0.4627755,1.8156594,2.0910926,0.83985585,-3.328642,2.20455,-2.807743,2.7325625"
Psychoactive Jelly,e-freq,Astral Projection,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Astral Projection - 02 Psychoactive Jelly.mp3,135.99917763157896,"-41.316936,57.826984,1.0601841,15.925467,-1.1945174,4.494115,0.5869196,5.666202,-6.2538996,0.8359966,-4.800612,4.207186,-1.2329892,4.384197,0.8305576,4.151905,-2.6404474,2.0675626,-1.0028468,4.8638663"
E Is 4 Freak,e-freq,Dance Trax Vol. 43,2022,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Dance Trax Vol. 43 - 01 E Is 4 Freak.mp3,135.99917763157896,"-92.469765,71.08398,-9.189233,29.858313,9.846532,12.555781,4.9772124,6.734534,1.3789865,2.7803423,-1.7860266,1.1924495,1.3787485,1.6855859,0.5978469,2.925214,-1.8579916,2.5750215,0.2607633,2.1524963"
Dream State,e-freq,Dance Trax Vol. 43,2022,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Dance Trax Vol. 43 - 02 Dream State.mp3,135.99917763157896,"-115.325424,74.33063,38.75607,19.296604,6.0571837,17.580648,1.6462874,13.426863,0.08393797,5.683869,-0.56075376,5.5048857,2.047745,4.094081,1.7622138,3.4165595,-5.3878593,0.7514132,0.18378179,3.587189"
State Of Peace,e-freq,Dance Trax Vol. 56,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Dance Trax Vol. 56 - 01 State Of Peace.mp3,107.666015625,"-71.521545,64.43468,-18.185537,29.99347,-4.917591,6.11432,-7.8376374,3.5421803,-5.1699576,-5.5364084,-4.7919593,1.1701545,-5.357915,-0.31283882,-0.15719268,3.1224139,-1.0431402,4.9677386,1.621271,5.722011"
State Of Peace (Tech House Mix),e-freq,Dance Trax Vol. 56,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Dance Trax Vol. 56 - 02 State Of Peace (Tech House Mix).mp3,123.046875,"-131.49565,62.368805,18.132818,19.225546,2.0619729,7.477177,-6.9409285,9.632545,-3.5969338,3.5984368,-8.216885,4.10111,-3.9555593,0.8195175,8.27613,3.9899049,2.7609792,9.459031,5.0062056,5.0469666"
Ace Of Bass,e-freq,Dance Trax Vol. 56,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Dance Trax Vol. 56 - 03 Ace Of Bass.mp3,123.046875,"-121.55534,37.07311,32.163982,6.408867,3.1242652,7.3996673,-1.1876687,7.431819,-2.7625918,2.9628565,-1.2485904,2.7161698,-3.7819183,-3.1810167,-1.4810523,5.1971135,2.1462874,4.988347,4.265488,3.2236829"
The Dreamer,E-Freq,E-Freq By Nature,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/E-Freq - E-Freq By Nature - 03 The Dreamer.mp3,112.34714673913044,"-92.44254,76.29085,27.690779,37.81747,-8.96576,19.650763,-2.0074952,14.700637,-2.9670148,9.137275,-1.820477,6.446233,-1.7542173,3.9032717,-0.6330118,5.0127707,-0.82130015,-0.20090866,-4.1626062,3.3193617"
Existence,e-freq,Existance,2022,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Existance - 01 Existence.mp3,123.046875,"-97.240395,91.57438,16.8462,24.40951,21.947718,4.384066,7.71064,7.650122,1.5428162,1.1570097,-2.8515813,5.298018,-5.565202,4.3329673,-1.2249128,2.551957,-4.730103,3.0966024,-3.5474756,-1.7922319"
Higher Dimension,e-freq,Existance,2022,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Existance - 02 Higher Dimension.mp3,83.35433467741936,"-116.8138,83.044426,39.118355,27.797436,4.124777,9.60985,-3.3083208,11.867086,-5.1570334,5.447559,-5.2435164,2.425302,-2.3955352,5.31568,2.0939767,3.5621765,-0.82975245,0.73114157,-4.551789,2.2625756"
The Planets,e-freq,Existance,2022,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Existance - 03 The Planets.mp3,129.19921875,"-89.84362,45.19501,48.524174,16.619696,11.609187,6.4188147,1.9392046,11.888983,-0.9096595,7.934295,-3.7393584,2.0560262,-3.3593948,4.7967143,-0.6001047,1.818768,-0.71024394,2.4672568,0.8929764,5.3694596"
Freq Dance,e-freq,Freq Dance,2021,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Freq Dance - 01 Freq Dance.mp3,123.046875,"-140.08035,71.42796,32.054615,25.792551,16.139181,19.73505,15.543983,11.665129,0.8247205,9.395344,3.1351576,3.491203,0.9517971,8.118043,6.2531996,14.343948,5.3359513,5.8392673,-0.9536518,4.739195"
Freq Dub,e-freq,Freq Dance,2021,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Freq Dance - 02 Freq Dub.mp3,123.046875,"-99.212975,73.10482,20.53806,40.405384,19.442177,7.3633366,-5.446881,10.408827,8.815338,-5.183694,-12.496742,8.543971,-4.722589,1.7307333,-0.7650829,-2.372308,4.5966415,2.1333334,-5.3265085,9.450839"
Mind The Gap,e-freq,Freq Dance,2021,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Freq Dance - 03 Mind The Gap.mp3,123.046875,"-129.68686,47.957695,-1.5340921,-5.201096,5.7671146,17.715069,10.949402,12.732714,-2.0799997,1.497278,-3.1550639,6.3281193,4.645943,6.800829,-0.8641553,2.8629858,-2.1398947,2.181095,-1.8602614,1.4590108"
Rainbow Planet,e-freq,Freq Dance,2021,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/e-freq - Freq Dance - 04 Rainbow Planet.mp3,129.19921875,"-118.63346,64.01265,32.469006,20.274015,3.224856,13.919718,2.3500948,10.033702,3.8666306,6.9646654,-4.7579384,3.6579454,1.1442882,6.231037,-0.6497328,4.7381663,1.4464302,6.2420626,1.8496125,4.561892"
Trip To The Other Side Of Reality,E-Freq,Trip To The Other Side Of Reality,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/E-Freq - Trip To The Other Side Of Reality - 01 Trip To The Other Side Of Reality.mp3,135.99917763157896,"-43.8999,50.229675,-6.623452,17.971304,-1.7783542,11.360957,-0.3281856,6.5946236,-1.1135213,4.563664,-4.8723364,1.3356254,-3.507936,0.2330328,-3.3067818,-0.10368111,-5.306061,-0.059296828,-4.0081277,1.2995049"
The Spirit Molecule,E-Freq,Trip To The Other Side Of Reality,2023,,Unknown to the Unknown,/mnt/d/UTTU/e-freq/E-Freq - Trip To The Other Side Of Reality - 02 The Spirit Molecule.mp3,92.28515625,"-57.95486,59.413876,8.499299,23.430927,-1.3687832,18.555069,-1.4621167,12.243179,-1.979191,1.6994466,-8.255264,1.174506,-0.2795815,2.3016708,-3.6514912,1.813713,0.87489325,-0.42445916,-3.2164583,3.029934"
The Dreamer,E-Freq,E-Freq By Nature,2023,,Unknown to the Unknown,/mnt/d/UTTU/E-Freq - E-Freq By Nature (pre-order)/E-Freq - E-Freq By Nature - 03 The Dreamer.mp3,112.34714673913044,"-92.44254,76.29085,27.690779,37.81747,-8.96576,19.650763,-2.0074952,14.700637,-2.9670148,9.137275,-1.820477,6.446233,-1.7542173,3.9032717,-0.6330118,5.0127707,-0.82130015,-0.20090866,-4.1626062,3.3193617"
Workout,EeOo [aka] Eomac [aka] Lakker,Workout EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/EeOo [aka] Eomac [aka] Lakker/EeOo -aka- Eomac -aka- Lakker - Workout EP - 01 Workout.mp3,184.5703125,"-98.524704,50.511856,-8.962332,15.297337,-15.837873,-4.7364993,-1.5471311,4.5077014,4.6716266,5.5377717,-0.4672576,2.068657,-1.5707374,4.87016,0.88246775,4.742297,-1.6723146,1.5018255,-2.2221305,3.0653381"
Calc,EeOo [aka] Eomac [aka] Lakker,Workout EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/EeOo [aka] Eomac [aka] Lakker/EeOo -aka- Eomac -aka- Lakker - Workout EP - 02 Calc.mp3,135.99917763157896,"-134.39394,99.5424,0.065518044,21.621923,-4.3490076,10.833634,-2.2232199,3.8957548,-2.9176052,4.1226153,-2.0609362,1.6684154,-3.8713243,1.1166916,-3.2503994,3.1278634,-0.7881791,2.261594,-1.3513973,0.6626386"
We Are All The Same,EeOo [aka] Eomac [aka] Lakker,Workout EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/EeOo [aka] Eomac [aka] Lakker/EeOo -aka- Eomac -aka- Lakker - Workout EP - 03 We Are All The Same.mp3,135.99917763157896,"-167.21248,96.25611,-21.535698,23.8657,-14.429081,9.973466,5.4253364,14.3186245,4.5399375,6.9665084,4.601471,8.560876,7.9596562,7.794137,0.7878161,1.8814386,-0.2268209,2.4838474,0.75406957,1.7949737"
Battery Baby,EeOo [aka] Eomac [aka] Lakker,Workout EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/EeOo [aka] Eomac [aka] Lakker/EeOo -aka- Eomac -aka- Lakker - Workout EP - 04 Battery Baby.mp3,129.19921875,"-123.93558,72.234856,-0.62179035,27.434723,0.11831364,16.19076,-0.44296336,8.337431,0.26867825,5.874768,-0.03914011,4.951402,-0.6992509,4.959797,0.23225397,2.2506874,-1.6949804,1.6346321,-1.1453799,4.3295736"
Mine8,EJECA,Dance Trax Vol. 25,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol. 25 - 01 Mine8.mp3,135.99917763157896,"-168.98723,64.885544,30.233498,48.22732,26.199602,35.427284,14.867366,23.488901,11.974484,16.038244,5.9425,10.194173,2.9610252,5.382296,3.3497782,6.8795166,0.07985768,6.524963,5.6304436,8.8846245"
Whiplash,EJECA,Dance Trax Vol. 25,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol. 25 - 02 Whiplash.mp3,143.5546875,"-223.21968,120.409996,74.18144,31.599915,20.937227,25.849874,11.529441,15.81179,4.5005283,10.201476,4.198095,8.438885,4.259313,4.000988,1.6103965,1.9002912,0.29900464,-1.9555854,-2.09115,0.11445377"
4Walls,EJECA,Dance Trax Vol. 25,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol. 25 - 03 4Walls.mp3,143.5546875,"-179.84256,75.13209,53.682896,65.96501,40.09959,20.814789,15.972751,18.946457,-2.8226168,1.6666752,0.7508054,-1.2398826,0.6893689,3.494451,-2.0262604,3.1358447,3.061282,3.6707208,1.7644919,4.592333"
Kolide,EJECA,Dance Trax Vol. 25,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol. 25 - 04 Kolide.mp3,129.19921875,"-153.3551,74.22694,49.694145,32.249466,23.041855,28.928114,3.0788324,18.245142,8.426341,15.299791,4.4528956,10.416513,6.4515247,-1.2643373,-0.7176609,2.978381,0.268892,3.2191644,6.262598,12.887068"
Tension,EJECA,Dance Trax Vol. 25,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol. 25 - 05 Tension.mp3,112.34714673913044,"-75.94054,65.65806,20.121716,28.835545,11.414626,16.578512,-2.9563146,11.940148,3.5814304,12.642463,-1.8697449,2.3283453,-2.0528257,-0.046244625,-0.605365,0.74877214,3.906737,13.096112,7.6871943,5.159376"
Gilboa,EJECA,Dance Trax Vol.18 + TRUNCATE Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.18 + TRUNCATE Remix - 01 Gilboa.mp3,129.19921875,"-149.7004,79.39783,15.747892,31.358828,11.700545,22.552837,8.535355,14.475894,4.5638833,9.592929,0.100774646,9.767197,3.0680716,4.141664,1.2254578,1.6286987,2.746186,6.6052885,1.3610948,1.1099567"
Encounter,EJECA,Dance Trax Vol.18 + TRUNCATE Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.18 + TRUNCATE Remix - 02 Encounter.mp3,135.99917763157896,"-127.0997,58.54229,39.27276,36.42509,17.547716,29.312508,2.5042875,18.552986,3.0424757,13.824631,4.575424,5.812567,0.87112224,1.707307,1.4104747,6.530818,-1.9921126,2.6189725,-0.91036296,2.2367535"
Infomartian,EJECA,Dance Trax Vol.18 + TRUNCATE Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.18 + TRUNCATE Remix - 03 Infomartian.mp3,129.19921875,"-164.0573,98.81673,43.796093,32.240814,12.6747465,16.969025,1.6312201,8.678704,4.813515,8.785727,0.8707585,3.3682034,-1.535377,-0.32605493,-4.7221007,0.79357594,-1.1562232,-1.8256748,-3.9880373,2.7806537"
Infomartian (Truncate Remix),EJECA,Dance Trax Vol.18 + TRUNCATE Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.18 + TRUNCATE Remix - 04 Infomartian (Truncate Remix).mp3,129.19921875,"-108.723625,83.34143,40.252262,28.229229,9.611121,25.772154,8.275069,13.064866,5.2230835,11.430887,1.9587965,3.879351,-0.45738766,3.139511,2.97806,8.67346,-1.2094812,0.44892743,-2.0477715,2.3642228"
Attack,EJECA,Dance Trax Vol.7,2017,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.7 - 01 Attack.mp3,129.19921875,"-157.92992,63.980915,17.206108,38.023407,15.814868,22.35611,11.644066,17.918339,7.971628,11.434339,5.1931763,9.857841,3.486128,4.0371413,5.050168,5.829367,-2.4453125,3.8396282,-0.584452,3.0746071"
Losty,EJECA,Dance Trax Vol.7,2017,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.7 - 02 Losty.mp3,135.99917763157896,"-179.61362,82.392715,59.782948,41.853683,17.274494,26.20434,14.82151,12.380579,4.383188,10.73311,3.94526,5.0847316,-1.3863482,1.1814213,-1.8254452,0.85950696,2.328404,0.94816655,-0.59680694,2.7609656"
Pintman,EJECA,Dance Trax Vol.7,2017,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Dance Trax Vol.7 - 03 Pintman.mp3,129.19921875,"-139.4825,70.253784,41.634197,40.48084,18.668812,20.16579,6.097337,11.17049,-1.526493,7.4146357,4.3493924,3.734043,0.7850404,-0.18845432,1.0185784,2.5037024,-0.5537005,2.2509654,-3.494402,3.145375"
Hours,EJECA,Hours / Shatter,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Hours - Shatter - 01 Hours.mp3,123.046875,"-218.22226,94.71034,44.93802,23.893908,19.398985,21.332613,13.481542,10.347444,1.7157934,9.498488,2.4565365,11.482809,3.574103,9.684931,12.752189,12.2969055,0.9929335,-0.25716388,-2.1038928,2.1936407"
Shatter,EJECA,Hours / Shatter,2019,,Unknown to the Unknown,/mnt/d/UTTU/EJECA/EJECA - Hours - Shatter - 02 Shatter.mp3,123.046875,"-180.90852,78.67135,30.856781,29.454418,20.55532,13.082153,10.222771,10.238398,4.693259,10.179921,4.550775,3.016328,4.8790393,8.147146,3.1730914,1.985285,2.9030824,1.8859131,2.9095101,4.4751053"
Attack (Matrixxman Remix),"trance, ejeca, deep house,",Dance Trax Vol.7,2017,,Unknown to the Unknown,"/mnt/d/UTTU/EJECA/trance, ejeca, deep house, - Dance Trax Vol.7 - 04 Attack (Matrixxman Remix).mp3",63.02400914634146,"-213.5176,99.00458,24.49111,48.219475,11.455438,53.398106,17.17298,23.40957,18.816639,8.1238575,6.0127993,5.581692,3.2697456,5.901325,10.021287,7.8869514,2.4405441,7.2570543,4.8083453,2.0850549"
Attack,EJECA,Dance Trax Vol.7,2017,,Unknown to the Unknown,/mnt/d/UTTU/EJECA - Dance Trax Vol.7/EJECA - Dance Trax Vol.7 - 01 Attack.mp3,129.19921875,"-157.92992,63.980915,17.206108,38.023407,15.814868,22.35611,11.644066,17.918339,7.971628,11.434339,5.1931763,9.857841,3.486128,4.0371413,5.050168,5.829367,-2.4453125,3.8396282,-0.584452,3.0746071"
Losty,EJECA,Dance Trax Vol.7,2017,,Unknown to the Unknown,/mnt/d/UTTU/EJECA - Dance Trax Vol.7/EJECA - Dance Trax Vol.7 - 02 Losty.mp3,135.99917763157896,"-179.61362,82.392715,59.782948,41.853683,17.274494,26.20434,14.82151,12.380579,4.383188,10.73311,3.94526,5.0847316,-1.3863482,1.1814213,-1.8254452,0.85950696,2.328404,0.94816655,-0.59680694,2.7609656"
Pintman,EJECA,Dance Trax Vol.7,2017,,Unknown to the Unknown,/mnt/d/UTTU/EJECA - Dance Trax Vol.7/EJECA - Dance Trax Vol.7 - 03 Pintman.mp3,129.19921875,"-139.4825,70.253784,41.634197,40.48084,18.668812,20.16579,6.097337,11.17049,-1.526493,7.4146357,4.3493924,3.734043,0.7850404,-0.18845432,1.0185784,2.5037024,-0.5537005,2.2509654,-3.494402,3.145375"
Attack (Matrixxman Remix),"trance, ejeca, deep house,",Dance Trax Vol.7,2017,,Unknown to the Unknown,"/mnt/d/UTTU/EJECA - Dance Trax Vol.7/trance, ejeca, deep house, - Dance Trax Vol.7 - 04 Attack (Matrixxman Remix).mp3",63.02400914634146,"-213.5176,99.00458,24.49111,48.219475,11.455438,53.398106,17.17298,23.40957,18.816639,8.1238575,6.0127993,5.581692,3.2697456,5.901325,10.021287,7.8869514,2.4405441,7.2570543,4.8083453,2.0850549"
Fluid Funk,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Fluid Funk - 01 Fluid Funk.mp3,112.34714673913044,"-129.48328,63.040688,-4.4237905,43.902008,22.440336,36.15236,2.7206945,4.227622,4.4949155,14.793113,6.248918,4.703199,-2.9525588,13.686717,6.8587,0.896006,-1.6379439,0.73428607,3.6538086,2.758317"
Yes Yes,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Fluid Funk - 02 Yes Yes.mp3,112.34714673913044,"-58.096172,53.636196,-8.037225,16.690744,6.209156,19.309181,2.583596,21.880913,4.3365216,10.590914,-1.0112262,5.722304,-2.4875255,5.6990924,2.4201238,4.4955535,-0.79632306,3.9120345,1.3318146,2.0554104"
Pins and Needles,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Fluid Funk - 03 Pins and Needles.mp3,143.5546875,"-77.44738,51.692883,2.159064,27.919512,6.9823833,25.925426,9.133098,16.385906,1.6527804,13.226633,4.271673,6.8096514,1.1251986,1.9805574,-2.8456008,3.8175652,0.80966485,5.882615,1.4008915,2.263969"
Forever Seeking,Elisa Bee,Fluid Funk,2023,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Fluid Funk - 04 Forever Seeking.mp3,69.83741554054055,"-90.65801,109.44486,5.977253,24.48401,2.7023897,15.245692,5.371728,10.288377,0.72152585,5.3298254,0.21672063,3.4716659,-0.85656065,1.6610073,-2.167205,1.058015,0.03369291,2.4007175,-3.0615823,-1.5936239"
Mind Game,Elisa Bee,Mind Game EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Mind Game EP - 01 Mind Game.mp3,123.046875,"-106.755806,19.924524,2.1770334,23.511457,12.728795,6.565944,-4.351354,-2.2648892,-5.569225,0.6063724,-4.485656,0.610085,-5.6166196,2.188565,-5.048619,-0.45254254,-7.5432777,-2.1927822,-5.2174745,-1.3326937"
Pulsar,Elisa Bee,Mind Game EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Mind Game EP - 02 Pulsar.mp3,123.046875,"-130.6979,71.026924,-15.020532,23.50568,-0.1333773,-1.5773226,-6.894867,-0.018755484,-1.3353202,2.336191,-5.148346,-1.8828061,-4.892454,-2.4020941,-3.8136961,-4.268236,-1.4826535,2.5783114,0.739935,-1.5455904"
Mass,Elisa Bee,Mind Game EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Mind Game EP - 03 Mass.mp3,99.38401442307692,"-131.97238,45.457516,-7.573568,19.381529,-15.702228,1.9582868,1.9349322,15.276793,12.940943,22.811281,-4.3000636,-3.259272,-0.010911053,7.213137,1.7057872,7.2238083,2.0931113,-0.07664657,4.775657,-2.3630877"
Nebula,Elisa Bee,Mind Game EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Mind Game EP - 04 Nebula.mp3,117.45383522727273,"-93.08855,32.37916,-4.1707797,-0.6767477,-11.608342,19.092714,14.773254,6.3417134,-9.30511,10.268934,1.5440406,1.5677052,0.12547445,-2.5982096,-5.2146015,-2.74605,-7.230081,6.9820013,15.774115,29.22433"
Kalpa,Elisa Bee,Mind Game EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Mind Game EP - 05 Kalpa.mp3,99.38401442307692,"-87.010506,16.988892,34.390045,28.6783,-1.524591,14.95924,-1.121278,8.403384,0.9070097,7.3872128,-0.27977288,4.0119376,-1.4247195,3.920489,-1.6987945,1.5545214,-3.049339,0.3751635,-2.195833,4.433828"
Awaken,Elisa Bee,Mind Game EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/Elisa Bee/Elisa Bee - Mind Game EP - 06 Awaken.mp3,99.38401442307692,"-137.4966,55.217705,4.235263,8.0023575,0.07045231,14.955519,3.4484048,7.9861054,0.5465082,7.986142,1.0282784,5.579457,-0.7872437,3.168515,1.5791459,6.3655868,5.084769,8.105926,1.8543549,0.38962623"
Multipass,Estella Boersma,Dance Trax Vol.32,2021,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.32 - 01 Multipass.mp3,143.5546875,"-47.728607,89.01685,7.4721136,19.966099,3.2332628,17.542356,-2.6354213,6.4624887,-1.9429026,4.236429,-0.6225243,4.5076604,-2.035143,1.5737027,-2.3973978,1.9465151,-2.7947435,0.8025104,-2.4007466,0.3284765"
The Exoplanet,Estella Boersma,Dance Trax Vol.32,2021,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.32 - 02 The Exoplanet.mp3,95.703125,"-94.63335,87.57123,27.652842,36.199623,10.429083,20.459955,3.372991,10.753759,-2.4183505,8.011553,-2.390614,4.5110135,-0.09889476,2.9483924,-3.500303,-0.92203027,-6.261528,-0.25936556,-1.7960008,1.292181"
Round 1,Estella Boersma,Dance Trax Vol.32,2021,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.32 - 03 Round 1.mp3,143.5546875,"-123.805565,60.726574,25.986841,26.714779,3.4501328,17.845066,5.499037,8.001477,-1.4405549,5.373905,1.6125864,7.8818016,-2.3323965,4.7967973,-1.8930094,3.6448717,-1.9048369,6.0710883,-1.0326006,0.42988655"
Final Lap,Estella Boersma,Dance Trax Vol.32,2021,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.32 - 04 Final Lap.mp3,143.5546875,"-77.3527,65.46727,-12.830297,22.089333,-4.0503078,9.516568,3.1050837,10.618067,1.002414,7.7583747,0.4412259,3.4883053,1.6685194,4.5566416,-2.5894816,2.1172938,-0.06456666,2.3118136,-3.125633,0.48576358"
Rush,Estella Boersma,Dance Trax Vol.32,2021,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.32 - 05 Rush.mp3,143.5546875,"-62.588062,62.38472,-0.110157594,25.526821,2.7528815,15.090576,-0.861402,5.2728066,-3.5889523,6.4227986,2.1093414,10.711898,2.3551295,3.3597963,-0.11604026,-1.3597157,-6.672853,-0.2862721,-1.1872854,3.3244135"
Outro,Estella Boersma,Dance Trax Vol.32,2021,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.32 - 06 Outro.mp3,135.99917763157896,"-289.76526,120.82975,-33.539803,14.214365,-8.427066,-14.150186,-24.29289,-26.390203,-19.016466,-8.7313175,-13.412637,-15.169077,-20.592268,-18.67404,-21.64807,-18.762596,-13.230426,-2.0602791,-1.2234111,-1.4324397"
Am I Feelin,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.34 - 01 Am I Feelin.mp3,143.5546875,"-104.53744,71.63339,3.9070659,17.476147,14.425781,19.505163,0.45343906,8.6767235,2.0828369,8.921323,5.273011,8.079305,3.8806355,2.5524192,1.2545824,7.2633977,2.7203825,5.2405033,0.1515274,2.445012"
The Measure,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.34 - 02 The Measure.mp3,71.77734375,"-116.62426,40.636246,3.7138164,28.0989,4.809963,9.238563,0.4797808,9.177183,0.09870869,6.78848,-5.088516,-1.1555308,-1.3589125,2.32725,0.1497087,-2.751835,-2.8144083,2.748316,-2.2086213,-0.9470664"
Dazed,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.34 - 03 Dazed.mp3,143.5546875,"-100.39647,53.217766,7.322456,27.118063,-3.6615727,10.666791,-0.54809713,6.112968,-2.463059,3.7178323,-5.887282,4.1347365,-1.7629763,0.7596065,-1.2950001,0.83712316,-2.9454894,-0.07730224,-3.4327846,2.3574936"
Vitality,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Dance Trax Vol.34 - 04 Vitality.mp3,143.5546875,"-101.969925,71.714874,20.589025,34.146748,16.966135,17.326563,3.338925,7.076944,-5.9875774,2.3127222,-1.3255824,4.3628306,-0.9652983,1.9310347,-0.14207771,1.9428947,0.023130808,3.224993,0.30809167,2.0270963"
Glade,Estella Boersma,Glade,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Glade - 01 Glade.mp3,143.5546875,"-36.89258,57.170258,-6.187529,33.09786,-0.33085707,16.245228,-3.9460084,7.535477,1.271986,13.12388,5.691851,9.761135,2.1376781,5.6253815,-1.2347714,4.3159423,-1.6480652,4.855705,-0.26890987,4.3571615"
Get Up,Estella Boersma,Glade,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Glade - 02 Get Up.mp3,112.34714673913044,"-68.37794,48.186897,2.1982327,26.936085,11.037975,12.135246,4.259688,8.506163,3.7112427,7.0102096,1.4737521,9.225084,1.0557307,4.1931925,1.505025,2.7595994,-0.81945807,3.1696243,1.8039742,5.768183"
Alpha Centauri,Estella Boersma,Glade,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Glade - 03 Alpha Centauri.mp3,92.28515625,"-77.58357,40.10416,-0.7906802,26.184021,-3.7002108,12.939149,-5.3039436,13.155305,-6.8277216,6.7567854,1.5926201,2.1346357,0.40365964,3.5502787,-0.82627875,4.435799,-0.837059,1.4227537,-2.4524624,1.7961266"
Bullshit,Estella Boersma,Glade,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Glade - 04 Bullshit.mp3,143.5546875,"-73.054146,54.692474,-2.1061523,43.317696,1.6613648,18.156923,3.863431,10.526382,-2.2218199,5.671766,2.6070428,2.7724338,0.67316526,5.1305723,-3.0307815,3.763213,-4.4048414,-1.3705385,-0.5071558,1.2302778"
Voyage,Estella Boersma,Move EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Move EP - 01 Voyage.mp3,143.5546875,"-58.87833,76.02352,8.768109,20.529476,-2.5896282,13.895772,1.6876063,9.184308,0.53401124,6.2631197,1.5296941,7.113021,-0.60240984,3.1493733,0.0134261595,1.5988657,-3.5782087,3.2849832,-1.1050539,4.2324376"
Sweat,Estella Boersma,Move EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Move EP - 02 Sweat.mp3,143.5546875,"-97.989655,90.84239,8.402899,23.51786,7.320417,13.204617,7.278534,13.896647,6.781652,10.348015,0.8649278,5.1583395,3.481358,4.102389,1.7394706,7.010763,0.7686306,2.069407,-1.0187078,2.6631086"
Dispatch,Estella Boersma,Move EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Move EP - 03 Dispatch.mp3,143.5546875,"-56.078575,84.07567,-0.41995633,21.231361,3.4763613,16.619232,4.182464,5.8564835,2.6933906,7.4312973,0.8962204,3.9109626,-1.6355355,0.38006908,-3.2816575,-0.52541006,-2.2281015,2.4591246,-1.5333629,0.74377114"
Subspace,Estella Boersma,Move EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma/Estella Boersma - Move EP - 04 Subspace.mp3,143.5546875,"-37.22009,74.086586,-20.582067,35.535805,-2.4721136,13.327839,1.2473688,5.473603,0.031705648,7.4667974,-2.8957102,5.0345554,2.0429175,2.9603055,-1.636934,0.91650534,-2.4791555,0.06310542,-4.099183,-1.6650738"
Am I Feelin,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma - Dance Trax Vol.34/Estella Boersma - Dance Trax Vol.34 - 01 Am I Feelin.mp3,143.5546875,"-104.53744,71.63339,3.9070659,17.476147,14.425781,19.505163,0.45343906,8.6767235,2.0828369,8.921323,5.273011,8.079305,3.8806355,2.5524192,1.2545824,7.2633977,2.7203825,5.2405033,0.1515274,2.445012"
The Measure,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma - Dance Trax Vol.34/Estella Boersma - Dance Trax Vol.34 - 02 The Measure.mp3,71.77734375,"-116.62426,40.636246,3.7138164,28.0989,4.809963,9.238563,0.4797808,9.177183,0.09870869,6.78848,-5.088516,-1.1555308,-1.3589125,2.32725,0.1497087,-2.751835,-2.8144083,2.748316,-2.2086213,-0.9470664"
Dazed,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma - Dance Trax Vol.34/Estella Boersma - Dance Trax Vol.34 - 03 Dazed.mp3,143.5546875,"-100.39647,53.217766,7.322456,27.118063,-3.6615727,10.666791,-0.54809713,6.112968,-2.463059,3.7178323,-5.887282,4.1347365,-1.7629763,0.7596065,-1.2950001,0.83712316,-2.9454894,-0.07730224,-3.4327846,2.3574936"
Vitality,Estella Boersma,Dance Trax Vol.34,2022,,Unknown to the Unknown,/mnt/d/UTTU/Estella Boersma - Dance Trax Vol.34/Estella Boersma - Dance Trax Vol.34 - 04 Vitality.mp3,143.5546875,"-101.969925,71.714874,20.589025,34.146748,16.966135,17.326563,3.338925,7.076944,-5.9875774,2.3127222,-1.3255824,4.3628306,-0.9652983,1.9310347,-0.14207771,1.9428947,0.023130808,3.224993,0.30809167,2.0270963"
You (Original Mix),Evil Fred,The Unknown Evil EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Evil Fred/Evil Fred - The Unknown Evil EP - 01 You (Original Mix).mp3,66.25600961538461,"-113.680984,114.91718,30.539358,28.955315,12.808626,12.286547,1.4653642,6.943624,-1.3736111,1.7166554,-2.3538313,1.3314382,-1.0240935,1.5751951,-1.3605204,5.0352097,0.37800965,1.8489605,-3.5488183,-0.44742942"
You (Work It),Evil Fred,The Unknown Evil EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Evil Fred/Evil Fred - The Unknown Evil EP - 02 You (Work It).mp3,66.25600961538461,"-92.859,80.40056,24.7191,20.302761,9.743432,21.392883,8.2644825,10.576673,2.3249214,9.025341,0.28718233,5.9652996,-0.07100359,5.209616,-0.7531866,4.3578863,-1.4710982,2.3421702,-1.4046831,4.889715"
The Evil Dance,Evil Fred,The Unknown Evil EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Evil Fred/Evil Fred - The Unknown Evil EP - 03 The Evil Dance.mp3,66.25600961538461,"-131.59425,61.746937,27.794977,25.34286,8.87242,17.97048,4.015056,13.307284,4.315756,8.526593,1.6309518,8.273312,0.30184066,1.0879016,0.019166524,1.6327815,-2.4455197,1.2884927,-0.6899848,5.7132487"
The Evil Trance,Evil Fred,The Unknown Evil EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Evil Fred/Evil Fred - The Unknown Evil EP - 04 The Evil Trance.mp3,129.19921875,"-125.783104,87.430824,40.958553,24.729176,12.572323,9.547563,4.991929,10.057858,2.504446,11.4010515,6.9376583,12.058606,7.038241,6.767659,3.3838227,2.1713872,-4.392134,1.8394204,-1.6692927,4.1864705"
Punch The Wall,Ewan McVicar,Punch The Wall EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Ewan McVicar/Ewan McVicar - Punch The Wall EP - 01 Punch The Wall.mp3,129.19921875,"-130.93817,75.20546,20.40994,30.392675,12.464421,14.072475,8.900791,12.021022,3.9501472,7.538912,2.9566658,4.6449323,0.3121143,4.6204214,0.46044987,3.1075902,-0.53060246,3.3568501,-0.92610854,0.031201974"
Ecosse,Ewan McVicar,Punch The Wall EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Ewan McVicar/Ewan McVicar - Punch The Wall EP - 02 Ecosse.mp3,123.046875,"-117.2706,41.86782,13.607949,9.870018,12.0082855,16.87169,4.140599,1.6825147,1.9363345,2.5953016,-2.1676352,2.1868975,-5.0280523,1.0907248,-4.2819643,1.3110636,-7.9443526,-3.8265338,-6.9376693,-3.9044735"
The Zulu Bop,Ewan McVicar,Punch The Wall EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Ewan McVicar/Ewan McVicar - Punch The Wall EP - 03 The Zulu Bop.mp3,123.046875,"-94.051025,42.13991,18.145765,10.767836,1.6986732,9.367692,-2.4798188,7.0963407,-5.0026855,1.3774699,-6.056803,-0.79160565,-2.429534,0.80059236,-2.2037764,0.91076976,-3.5633218,-2.9150796,-5.752544,1.349313"
Punch The Wall (MAREAM Remix),Ewan McVicar,Punch The Wall EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Ewan McVicar/Ewan McVicar - Punch The Wall EP - 04 Punch The Wall (MAREAM Remix).mp3,89.10290948275862,"-82.42101,63.672657,11.627989,24.70182,12.61141,14.473568,2.2514694,9.245953,1.5677927,8.531941,-2.2118218,2.7866042,-2.292504,1.4324526,0.6428302,9.026755,3.8717752,3.7446902,-2.7273662,-9.270152"
Punch The Wall (Elisa Bee Remix),Ewan McVicar,Punch The Wall EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Ewan McVicar/Ewan McVicar - Punch The Wall EP - 05 Punch The Wall (Elisa Bee Remix).mp3,129.19921875,"-110.09901,58.100456,18.34398,36.938206,17.599983,25.284096,2.4725397,13.4932375,1.8375701,8.941768,2.914951,11.863192,4.3738756,4.3891964,-1.106609,6.285089,1.5909442,3.3147883,0.16074362,2.9643748"
EZ Luv,EZ Jam,EZ Luv EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/EZ Jam/EZ Jam - EZ Luv EP - 01 EZ Luv.mp3,143.5546875,"-186.61159,64.238914,24.54888,23.728893,-5.3628044,7.952437,-1.697112,7.666005,-1.6574582,7.4750843,-1.8504767,4.533387,-1.632983,1.5504094,3.176972,6.402005,0.15027608,3.4030519,-1.2930784,0.70398283"
Take It Easy,EZ Jam,EZ Luv EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/EZ Jam/EZ Jam - EZ Luv EP - 02 Take It Easy.mp3,143.5546875,"-187.9361,65.51018,36.061428,29.31096,18.145033,10.826583,6.962505,12.811089,3.6873186,5.100893,-2.019987,7.377384,0.49677658,6.4357624,0.6321654,2.719072,0.108131535,4.3623376,1.0518029,1.5387057"
EZ Come,EZ Jam,EZ Luv EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/EZ Jam/EZ Jam - EZ Luv EP - 03 EZ Come.mp3,143.5546875,"-91.593704,51.023132,14.693766,34.148987,6.6299095,17.69932,0.48126972,10.0543,-1.1628873,8.446053,0.88187355,6.854958,1.3916452,11.097096,2.9554849,6.2357616,1.9031543,2.1072166,-0.49934262,4.835072"
EZ Go,EZ Jam,EZ Luv EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/EZ Jam/EZ Jam - EZ Luv EP - 04 EZ Go.mp3,143.5546875,"-97.95944,41.037586,26.306572,12.991792,-0.26466766,14.233992,-2.8468974,11.498621,5.73721,5.236261,0.39211506,6.234901,1.7544355,6.186127,2.4013417,8.2122555,0.47311527,4.285746,1.1819458,4.5027194"
EZ Luv (Mark Hawkins Remix),EZ Jam,EZ Luv EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/EZ Jam/EZ Jam - EZ Luv EP - 05 EZ Luv (Mark Hawkins Remix).mp3,69.83741554054055,"-67.66712,93.148254,20.307404,32.878475,8.145771,20.17398,1.4195821,16.059523,-3.3139725,11.087073,2.8157332,5.332933,2.8183227,1.148767,3.3012054,5.640107,1.532782,2.7933023,3.1343043,0.8075435"
Mrs Feet Fingers,FAFF,Crappy Hardcore EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FAFF/FAFF - Crappy Hardcore EP - 01 Mrs Feet Fingers.mp3,135.99917763157896,"-90.400955,51.918285,5.391653,6.125642,-0.5889086,9.896273,-0.082837805,1.7105428,-5.3658733,2.0714245,-2.141624,2.3771834,-3.9068263,-0.8033031,0.61407834,0.5010443,-4.672874,2.003708,-0.067864195,6.030213"
Crappy Hardcore,FAFF,Crappy Hardcore EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FAFF/FAFF - Crappy Hardcore EP - 02 Crappy Hardcore.mp3,151.99908088235293,"-132.32501,81.28933,20.586214,16.848894,13.575636,10.966667,-0.35450432,1.1404672,-1.2576123,-0.31697094,-4.5053034,-2.1610627,-3.691756,-0.7488238,-3.2464848,1.8271568,-4.6685987,0.1881493,-3.948605,0.10941033"
Ugly & Sad (Feat.Ugly Drugless),FAFF,Crappy Hardcore EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FAFF/FAFF - Crappy Hardcore EP - 03 Ugly & Sad (Feat.Ugly Drugless).mp3,143.5546875,"-72.180214,48.43065,8.6753435,5.67611,-0.47673905,6.180482,0.0141902715,4.62618,-2.0876482,6.211488,-0.9420711,5.7047243,-1.3801923,2.3742142,1.7971419,2.3841543,-1.3328898,4.7688107,-2.6733832,3.683419"
I Love Music (Feat. Eva Roisin & Ugly Drugless),FAFF,Crappy Hardcore EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FAFF/FAFF - Crappy Hardcore EP - 04 I Love Music (Feat. Eva Roisin & Ugly Drugless).mp3,92.28515625,"-109.382095,90.28912,8.428991,21.638365,2.0523758,13.331773,1.8055296,5.860335,0.8917885,5.34908,0.12512092,2.3193054,-1.5841519,0.87873286,-0.7821648,1.2136155,-1.2293468,2.9439268,-0.8181416,1.8811617"
Five,Falcon Black Ops,Vol.1,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Vol.1 - 01 Five.mp3,89.10290948275862,"-20.35305,61.1299,22.658907,28.46804,12.6865425,26.103676,9.630826,15.693058,6.063932,9.461537,1.4998807,6.571271,-0.33284628,4.1129208,0.6979355,1.8955265,-2.7142587,3.1990478,0.3467582,3.080991"
Three,Falcon Black Ops,Vol.1,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Vol.1 - 02 Three.mp3,129.19921875,"-53.087303,44.86168,37.402252,42.608658,4.3981733,27.803284,2.4769628,14.633478,9.151548,14.922713,2.2074928,6.932845,2.660143,6.272415,1.7166234,3.624736,-2.5063374,6.876646,-0.28679895,0.5231008"
One,Falcon Black Ops,Vol.1,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Vol.1 - 03 One.mp3,129.19921875,"-56.622417,49.799862,33.29217,19.56698,-0.02862963,19.26726,5.5568156,17.015926,10.971255,13.098694,6.2754054,11.941833,4.677474,2.3078887,-3.459681,-0.6908865,-0.29831317,6.906853,4.578062,9.747346"
Two,Falcon Black Ops,Vol.1,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Vol.1 - 04 Two.mp3,129.19921875,"-64.39793,62.71029,46.874653,30.999044,14.556443,27.674847,8.019367,13.408196,5.1303906,11.679912,3.3882022,9.965548,-1.5083821,2.7571633,-0.31554866,0.5937579,-3.884822,3.0320768,0.050256703,5.2354016"
Nine,Falcon Black Ops,Volume 2,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Volume 2 - 01 Nine.mp3,66.25600961538461,"-24.546467,45.67705,17.092888,31.04148,5.193851,23.88266,10.462293,18.784811,11.421411,14.617585,2.7033632,-0.2677669,-1.76036,3.0878332,2.6145566,7.4248424,-5.3688946,-1.0424896,-1.9877783,2.444536"
Ten,Falcon Black Ops,Volume 2,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Volume 2 - 02 Ten.mp3,129.19921875,"-22.797792,99.34405,-14.973158,39.961514,-4.807384,37.967163,11.411918,12.153921,4.4743066,11.811896,1.8185257,6.188085,6.871331,4.273237,0.79316443,6.20854,2.041239,5.070575,1.2834971,4.599849"
Eleven,Falcon Black Ops,Volume 2,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Volume 2 - 03 Eleven.mp3,129.19921875,"-32.21506,90.15681,19.279552,22.269085,-0.11967502,22.033585,17.532272,16.235373,1.4740964,-0.92421126,-5.924931,4.7510033,-0.7709429,9.8588,0.9206224,1.6779358,-1.2481626,1.905256,-0.7117769,6.13641"
Twelve,Falcon Black Ops,Volume 2,2018,,Unknown to the Unknown,/mnt/d/UTTU/Falcon Black Ops/Falcon Black Ops - Volume 2 - 04 Twelve.mp3,129.19921875,"-11.128327,79.77599,-5.6944637,22.452663,-5.3365364,11.110443,-1.6667662,13.601386,9.457175,12.914949,3.0933018,4.6494946,-4.409555,2.7245963,3.564209,6.451582,2.2701998,8.665083,1.7418602,7.2898645"
Untitled 111vgr,FaltyDL,One For UTTU EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - One For UTTU EP - 01 Untitled 111vgr.mp3,99.38401442307692,"-35.896008,65.89551,10.804594,16.682919,5.680036,12.352288,-2.0163624,5.922191,3.9011219,8.903413,1.4934852,2.8748405,0.10639755,5.754837,1.6121807,5.9326334,0.7573372,4.397447,1.7804334,2.1548462"
Beast,FaltyDL,One For UTTU EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - One For UTTU EP - 02 Beast.mp3,129.19921875,"-118.13047,77.06415,22.850414,51.72513,12.684338,19.496618,3.8967404,10.469951,-0.40933406,6.9472804,2.3638418,5.3014617,-0.9619913,-0.08149519,0.26206052,3.3094485,2.4789379,5.3392634,0.40372306,5.5202184"
One for UTTU,FaltyDL,One For UTTU EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - One For UTTU EP - 03 One for UTTU.mp3,129.19921875,"-70.42422,49.01871,41.169975,20.36898,13.019628,26.117857,6.446385,12.773131,1.9965765,13.593163,4.7576914,5.7340674,3.1644182,5.944329,1.8302668,1.8498776,-5.224714,2.5113082,1.5894734,6.9353724"
Piano 4_9_18 feux master Erie 25%,FaltyDL,One For UTTU EP,2019,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - One For UTTU EP - 04 Piano 4_9_18 feux master Erie 25-.mp3,112.34714673913044,"-135.0179,95.159325,37.934383,16.795301,8.589168,11.5918045,4.8018794,6.6386905,0.2975434,4.4863086,1.2263983,5.94265,5.8163075,11.815951,3.7814305,0.2626754,-1.2912604,2.5166698,5.531317,4.7683516"
Mount Sinai,FaltyDL,Splat EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - Splat EP - 01 Mount Sinai.mp3,73.828125,"-84.59967,81.07658,40.883625,28.86454,12.9540205,16.239477,4.6709204,9.632117,2.3454876,9.27187,4.2659774,9.302638,2.5560584,7.620746,3.312973,4.8113875,-1.1371876,2.7557917,-0.7128951,3.30349"
wef EX 2C,FaltyDL,Splat EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - Splat EP - 02 wef EX 2C.mp3,143.5546875,"-79.60812,61.07064,35.842438,32.545525,9.139263,9.15687,-2.4788156,6.0384607,-0.36554483,7.100118,-0.20068839,5.705377,-1.2957822,3.2223892,0.26519424,1.8860601,-1.7276733,2.3817263,-1.0938561,4.474967"
Splat,FaltyDL,Splat EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - Splat EP - 03 Splat.mp3,80.74951171875,"-51.201298,96.00944,-1.049913,23.224419,-0.6502658,13.007457,-0.29876214,7.2212806,1.5095528,6.8831773,-3.1759517,5.2211857,2.335856,4.1180735,-1.1445174,3.1702473,0.78498185,3.971275,1.2851632,6.6729107"
Please Below,FaltyDL,Splat EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/FaltyDL/FaltyDL - Splat EP - 04 Please Below.mp3,66.25600961538461,"-81.233376,82.19975,40.180782,15.542161,11.887362,17.34769,-0.46491644,8.6136465,-2.0902238,4.332025,-4.628612,-0.9951126,-4.963614,0.95651084,0.8851119,1.754363,-1.9973679,2.8821588,-1.9410402,0.39546934"
Cruiser,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 01 Cruiser.mp3,129.19921875,"-90.45733,17.138992,-12.624118,-0.901505,-4.925315,13.953881,0.6397657,14.639823,7.2904434,11.714605,3.8711517,7.2136717,-0.5442919,6.417121,0.38846627,1.9458578,-1.9594774,-0.95080227,-3.2123003,1.5298545"
Expansion,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 02 Expansion.mp3,129.19921875,"-118.80469,51.541965,-7.987755,29.555428,1.9893863,18.693756,2.5210469,12.292262,1.6548704,7.408962,-3.7772293,2.5803394,-9.829984,-4.2690835,-10.195213,-4.881959,-7.297046,-1.0514376,-3.1173446,1.4834301"
Ice Click,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 03 Ice Click.mp3,86.1328125,"-36.60054,90.196365,-11.766269,20.903336,4.536619,23.521048,4.4583406,18.808466,5.650322,11.364059,0.5075248,4.8902,-2.8097105,0.2565155,-3.4869902,2.869695,-1.0495372,-2.2473443,-5.0329027,-2.8919454"
Kicking,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 04 Kicking.mp3,143.5546875,"-38.418446,76.516,-13.189869,28.326462,2.4517744,17.372688,-5.370633,5.7248697,-8.521864,4.022192,-4.199245,3.0259492,-4.6827726,1.5811689,-1.5951024,0.9694637,-3.8595235,-1.1601487,-2.0925584,4.9386387"
Moon Beams,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 05 Moon Beams.mp3,69.83741554054055,"-80.20995,65.13585,4.737967,35.36397,-0.029961875,27.565338,7.1244965,15.459131,3.9508464,13.057302,-3.4568563,2.2369347,-7.593161,0.023211634,-0.17566468,0.21448435,-5.144483,0.019051572,-0.8579126,-2.5759819"
Penguin,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 06 Penguin.mp3,143.5546875,"-63.580807,60.06111,-15.315157,17.635569,0.88835025,19.073051,2.0030386,18.650272,4.5748806,8.351831,-4.721351,0.0071751755,-1.0498354,5.1470537,-3.818403,0.10531542,-8.330846,-5.9892917,-8.138637,-2.917959"
Pinball,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 07 Pinball.mp3,135.99917763157896,"-111.54442,86.21562,-10.783216,9.25373,19.594297,8.84715,8.812626,16.16175,3.9144793,2.6958094,-1.2523701,4.0670495,-0.67721665,2.4043107,-4.333067,0.972211,-4.666087,1.2058818,0.32693157,4.36458"
Reckless,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 08 Reckless.mp3,135.99917763157896,"-56.934887,55.79825,-7.2072206,30.366297,-16.049639,13.873356,-1.690119,5.100016,-3.3886983,0.72453725,-4.2561255,-0.8753104,-6.1165485,1.1879832,-4.593974,3.0630226,-5.4719896,0.17793576,-3.057215,2.4343214"
Sea Spray,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 09 Sea Spray.mp3,92.28515625,"-64.19353,106.58251,-16.85314,8.009496,12.184551,11.79829,4.4183693,9.052426,2.930336,5.5304894,-1.8930401,5.5296717,-0.33327177,3.0536253,-3.2072282,0.7784301,-2.9494517,-0.42753237,-3.027213,2.3557944"
Snow Click,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 10 Snow Click.mp3,89.10290948275862,"-124.74842,94.124626,-40.854992,16.762331,6.8200245,19.422104,7.8003197,17.423914,4.659025,8.163036,2.521549,6.6501374,-0.8622482,1.7211052,-7.321845,-1.6623021,-5.9025965,0.6949181,-5.3831816,1.1669819"
Tribal Data,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 11 Tribal Data.mp3,129.19921875,"-93.033485,83.386955,-33.00831,1.991197,-1.8262788,8.641476,1.5417346,13.429288,5.448606,12.028972,3.8873098,8.705799,0.15583524,1.4470701,-4.5512023,-1.7223021,-10.4105215,-5.006871,-8.071679,-2.5638032"
Defender,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 12 Defender.mp3,143.5546875,"-98.53038,39.724445,-13.004719,26.648823,1.8322636,33.53541,6.4279265,9.882096,-3.3312728,12.37222,4.093388,2.390848,2.6997144,9.756658,-0.23415223,0.6256401,-9.052694,0.51672703,1.1466364,2.5098789"
Digital Defender,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 13 Digital Defender.mp3,172.265625,"-74.98814,106.01977,-45.386375,10.573616,5.5234766,11.531464,6.4830513,14.855128,6.333165,13.150219,4.658321,9.355014,5.0855317,6.504061,2.0779004,4.4351907,0.30482548,2.0966723,0.5168905,3.6211126"
Gravity Step,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 14 Gravity Step.mp3,129.19921875,"-80.2836,63.8785,-5.8614645,2.7274816,13.601305,15.912585,1.4799309,21.694529,11.767218,13.841894,5.484017,5.4085693,1.6213729,1.9144053,-4.673883,-1.0886081,-12.053149,-5.76465,-3.7350917,0.27627155"
Haunted,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 15 Haunted.mp3,143.5546875,"-64.83379,86.9301,-11.859013,9.16633,0.9875048,6.6829176,4.839131,7.458107,-5.452674,-0.62783575,-5.487529,-1.5614737,-4.8111296,-1.3936203,-6.7493625,-1.3077955,-4.2028003,0.21493948,-4.0193243,1.1180962"
Machine Ghosts,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread/Filter Dread - Tribal Data - 16 Machine Ghosts.mp3,89.10290948275862,"-87.69866,93.78544,-7.8737664,32.364708,6.7680025,7.6476064,4.4808626,17.71592,-5.683373,8.831949,-0.45868763,3.7186594,1.0929952,4.894601,-2.0803175,3.676224,-1.1443918,1.0401077,0.96167326,5.046856"
Cruiser,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 01 Cruiser.mp3,129.19921875,"-90.45733,17.138992,-12.624118,-0.901505,-4.925315,13.953881,0.6397657,14.639823,7.2904434,11.714605,3.8711517,7.2136717,-0.5442919,6.417121,0.38846627,1.9458578,-1.9594774,-0.95080227,-3.2123003,1.5298545"
Expansion,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 02 Expansion.mp3,129.19921875,"-118.80469,51.541965,-7.987755,29.555428,1.9893863,18.693756,2.5210469,12.292262,1.6548704,7.408962,-3.7772293,2.5803394,-9.829984,-4.2690835,-10.195213,-4.881959,-7.297046,-1.0514376,-3.1173446,1.4834301"
Ice Click,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 03 Ice Click.mp3,86.1328125,"-36.60054,90.196365,-11.766269,20.903336,4.536619,23.521048,4.4583406,18.808466,5.650322,11.364059,0.5075248,4.8902,-2.8097105,0.2565155,-3.4869902,2.869695,-1.0495372,-2.2473443,-5.0329027,-2.8919454"
Kicking,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 04 Kicking.mp3,143.5546875,"-38.418446,76.516,-13.189869,28.326462,2.4517744,17.372688,-5.370633,5.7248697,-8.521864,4.022192,-4.199245,3.0259492,-4.6827726,1.5811689,-1.5951024,0.9694637,-3.8595235,-1.1601487,-2.0925584,4.9386387"
Moon Beams,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 05 Moon Beams.mp3,69.83741554054055,"-80.20995,65.13585,4.737967,35.36397,-0.029961875,27.565338,7.1244965,15.459131,3.9508464,13.057302,-3.4568563,2.2369347,-7.593161,0.023211634,-0.17566468,0.21448435,-5.144483,0.019051572,-0.8579126,-2.5759819"
Penguin,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 06 Penguin.mp3,143.5546875,"-63.580807,60.06111,-15.315157,17.635569,0.88835025,19.073051,2.0030386,18.650272,4.5748806,8.351831,-4.721351,0.0071751755,-1.0498354,5.1470537,-3.818403,0.10531542,-8.330846,-5.9892917,-8.138637,-2.917959"
Pinball,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 07 Pinball.mp3,135.99917763157896,"-111.54442,86.21562,-10.783216,9.25373,19.594297,8.84715,8.812626,16.16175,3.9144793,2.6958094,-1.2523701,4.0670495,-0.67721665,2.4043107,-4.333067,0.972211,-4.666087,1.2058818,0.32693157,4.36458"
Reckless,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 08 Reckless.mp3,135.99917763157896,"-56.934887,55.79825,-7.2072206,30.366297,-16.049639,13.873356,-1.690119,5.100016,-3.3886983,0.72453725,-4.2561255,-0.8753104,-6.1165485,1.1879832,-4.593974,3.0630226,-5.4719896,0.17793576,-3.057215,2.4343214"
Sea Spray,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 09 Sea Spray.mp3,92.28515625,"-64.19353,106.58251,-16.85314,8.009496,12.184551,11.79829,4.4183693,9.052426,2.930336,5.5304894,-1.8930401,5.5296717,-0.33327177,3.0536253,-3.2072282,0.7784301,-2.9494517,-0.42753237,-3.027213,2.3557944"
Snow Click,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 10 Snow Click.mp3,89.10290948275862,"-124.74842,94.124626,-40.854992,16.762331,6.8200245,19.422104,7.8003197,17.423914,4.659025,8.163036,2.521549,6.6501374,-0.8622482,1.7211052,-7.321845,-1.6623021,-5.9025965,0.6949181,-5.3831816,1.1669819"
Tribal Data,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 11 Tribal Data.mp3,129.19921875,"-93.033485,83.386955,-33.00831,1.991197,-1.8262788,8.641476,1.5417346,13.429288,5.448606,12.028972,3.8873098,8.705799,0.15583524,1.4470701,-4.5512023,-1.7223021,-10.4105215,-5.006871,-8.071679,-2.5638032"
Defender,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 12 Defender.mp3,143.5546875,"-98.53038,39.724445,-13.004719,26.648823,1.8322636,33.53541,6.4279265,9.882096,-3.3312728,12.37222,4.093388,2.390848,2.6997144,9.756658,-0.23415223,0.6256401,-9.052694,0.51672703,1.1466364,2.5098789"
Digital Defender,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 13 Digital Defender.mp3,172.265625,"-74.98814,106.01977,-45.386375,10.573616,5.5234766,11.531464,6.4830513,14.855128,6.333165,13.150219,4.658321,9.355014,5.0855317,6.504061,2.0779004,4.4351907,0.30482548,2.0966723,0.5168905,3.6211126"
Gravity Step,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 14 Gravity Step.mp3,129.19921875,"-80.2836,63.8785,-5.8614645,2.7274816,13.601305,15.912585,1.4799309,21.694529,11.767218,13.841894,5.484017,5.4085693,1.6213729,1.9144053,-4.673883,-1.0886081,-12.053149,-5.76465,-3.7350917,0.27627155"
Haunted,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 15 Haunted.mp3,143.5546875,"-64.83379,86.9301,-11.859013,9.16633,0.9875048,6.6829176,4.839131,7.458107,-5.452674,-0.62783575,-5.487529,-1.5614737,-4.8111296,-1.3936203,-6.7493625,-1.3077955,-4.2028003,0.21493948,-4.0193243,1.1180962"
Machine Ghosts,Filter Dread,Tribal Data,2017,,Unknown to the Unknown,/mnt/d/UTTU/Filter Dread - Tribal Data/Filter Dread - Tribal Data - 16 Machine Ghosts.mp3,89.10290948275862,"-87.69866,93.78544,-7.8737664,32.364708,6.7680025,7.6476064,4.4808626,17.71592,-5.683373,8.831949,-0.45868763,3.7186594,1.0929952,4.894601,-2.0803175,3.676224,-1.1443918,1.0401077,0.96167326,5.046856"
That Look,fleet.dreams,Temperamental,2022,,Unknown to the Unknown,/mnt/d/UTTU/fleet.dreams/fleet.dreams - Temperamental - 01 That Look.mp3,92.28515625,"-60.685123,51.791058,21.702475,14.332284,4.247779,5.970082,-4.0211663,0.10124684,-7.423841,0.95465535,-6.6740503,-1.266071,-5.8708334,-2.7643821,-5.399084,-1.6542515,-7.071146,-0.52473044,-3.0683591,-1.8287174"
U Been Lied 2,fleet.dreams,Temperamental,2022,,Unknown to the Unknown,/mnt/d/UTTU/fleet.dreams/fleet.dreams - Temperamental - 02 U Been Lied 2.mp3,143.5546875,"-64.78778,56.806393,17.361486,23.059397,22.190445,18.591175,8.594526,9.713558,-1.3985828,5.0448813,-1.3371247,2.3290443,-2.803097,3.4631052,-2.9758742,3.74817,-0.7476555,3.0778487,0.115324885,2.048455"
Feel Ur Fire,fleet.dreams,Temperamental,2022,,Unknown to the Unknown,/mnt/d/UTTU/fleet.dreams/fleet.dreams - Temperamental - 03 Feel Ur Fire.mp3,135.99917763157896,"-34.5357,33.283176,-4.8891435,6.3096538,0.93395203,11.567591,1.1935469,1.2313261,-4.6708503,1.8744687,-8.753221,-0.38460046,-5.767673,2.9134731,-1.4812803,-0.7964152,-1.3445227,3.683907,-0.05331663,4.063899"
Temperamental,fleet.dreams,Temperamental,2022,,Unknown to the Unknown,/mnt/d/UTTU/fleet.dreams/fleet.dreams - Temperamental - 04 Temperamental.mp3,135.99917763157896,"-66.47854,32.03337,20.149435,12.018887,0.9770714,10.411672,2.5659378,7.07979,1.3026067,4.9824862,-3.4292808,1.8086991,-2.4813156,0.94526297,-1.9182866,0.19162984,-6.5726676,-4.3819404,-2.0133429,1.6622732"
Lane Escape,Frak,Lane Escape EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Frak/Frak - Lane Escape EP - 01 Lane Escape.mp3,117.45383522727273,"-97.78066,43.77562,24.173756,17.10341,3.6550548,14.482497,10.116212,14.710566,8.794354,13.513066,6.848578,13.20096,5.2240224,9.570721,3.262492,8.409944,1.8328212,6.8354673,5.063255,7.9192257"
Protes,Frak,Lane Escape EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Frak/Frak - Lane Escape EP - 02 Protes.mp3,123.046875,"-101.89584,77.09186,-10.352504,17.200563,6.7790318,24.128233,3.401342,14.914898,4.695377,11.1926985,7.2781734,11.01145,2.594014,-2.8234234,-2.7000506,3.5467348,3.6886678,5.425987,-1.8986412,0.8973616"
Long Fork,Frak,Lane Escape EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Frak/Frak - Lane Escape EP - 03 Long Fork.mp3,129.19921875,"-62.952053,30.031708,1.396409,36.042652,12.6662245,23.775236,8.929989,14.143384,7.140982,14.704213,-0.21579976,4.8162766,0.77344805,3.8575761,-0.34437227,2.8657603,-2.512118,1.9428078,-2.5682924,2.1526423"
Large Function,Frak,Lane Escape EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Frak/Frak - Lane Escape EP - 04 Large Function.mp3,129.19921875,"-88.53191,51.444798,-11.676009,18.489212,6.4876623,23.252264,3.2202682,16.65133,5.5504923,11.521857,3.4532058,8.615975,8.134092,5.359262,3.0167146,8.242651,8.609622,9.314271,1.3201153,8.158223"
FFFFFREAKAAAY,Freakenstein,Freak U E.P.,2021,,Unknown to the Unknown,/mnt/d/UTTU/Freakenstein/Freakenstein - Freak U E.P. - 01 FFFFFREAKAAAY.mp3,67.99958881578948,"-128.2477,61.380543,40.38645,33.51077,16.629335,15.6257,9.144027,13.878648,5.2394867,5.8089676,1.9325371,6.8881984,1.5649352,3.394899,0.15664363,4.1818657,-0.77610177,2.171392,-1.8314857,2.5951288"
RAAAH (I LIKE IT),Freakenstein,Freak U E.P.,2021,,Unknown to the Unknown,/mnt/d/UTTU/Freakenstein/Freakenstein - Freak U E.P. - 02 RAAAH (I LIKE IT).mp3,95.703125,"-139.96495,56.77311,50.330853,12.377738,8.60426,19.609137,-4.205122,13.106122,0.11961087,5.279892,-0.85122657,4.4709444,0.39939073,4.3434515,0.49819314,0.79117465,-1.4208428,0.6122199,-3.2402792,2.568071"
PANTY EXPANSION,Freakenstein,Freak U E.P.,2021,,Unknown to the Unknown,/mnt/d/UTTU/Freakenstein/Freakenstein - Freak U E.P. - 03 PANTY EXPANSION.mp3,143.5546875,"-116.355354,46.11189,41.23041,29.883242,15.965255,27.515066,6.0541973,13.723027,-2.3699508,5.978023,-3.4895463,4.3939533,-5.2527714,-1.3558867,-7.1923447,-0.5619803,-5.8753757,-0.8496386,-6.5495057,0.6397674"
Skeleton,Friend Within,Skeleton,2023,,Unknown to the Unknown,/mnt/d/UTTU/Friend Within/Friend Within - Skeleton - 01 Skeleton.mp3,129.19921875,"-23.702171,49.585495,6.322825,6.9147816,-0.1681159,11.200603,2.615968,1.7343099,-4.548562,5.474359,0.5659182,3.892953,-0.1180414,1.1356162,-0.09150921,3.2257068,-0.13721523,5.4956307,-0.45593002,3.2845342"
Runnin,Friend Within,Skeleton,2023,,Unknown to the Unknown,/mnt/d/UTTU/Friend Within/Friend Within - Skeleton - 02 Runnin.mp3,129.19921875,"-26.872509,48.803986,16.35629,14.994249,-6.4149656,15.358512,-1.9545617,6.187544,-3.2866728,5.9416375,-2.1113641,1.4562534,-4.6353583,0.00065755734,-3.112167,5.847957,0.7820735,2.8303642,-3.7839162,1.4927572"
Skeleton,Friend Within,Skeleton,2023,,Unknown to the Unknown,/mnt/d/UTTU/Friend Within - Skeleton/Friend Within - Skeleton - 01 Skeleton.mp3,129.19921875,"-23.702171,49.585495,6.322825,6.9147816,-0.1681159,11.200603,2.615968,1.7343099,-4.548562,5.474359,0.5659182,3.892953,-0.1180414,1.1356162,-0.09150921,3.2257068,-0.13721523,5.4956307,-0.45593002,3.2845342"
Runnin,Friend Within,Skeleton,2023,,Unknown to the Unknown,/mnt/d/UTTU/Friend Within - Skeleton/Friend Within - Skeleton - 02 Runnin.mp3,129.19921875,"-26.872509,48.803986,16.35629,14.994249,-6.4149656,15.358512,-1.9545617,6.187544,-3.2866728,5.9416375,-2.1113641,1.4562534,-4.6353583,0.00065755734,-3.112167,5.847957,0.7820735,2.8303642,-3.7839162,1.4927572"
Schaeffer Motor Dreams,George Feely,Schaeffer Motor Dreams,2021,,Unknown to the Unknown,/mnt/d/UTTU/George Feely/George Feely - Schaeffer Motor Dreams - 01 Schaeffer Motor Dreams.mp3,129.19921875,"-152.8881,56.684734,14.189223,32.487774,14.970998,23.672098,13.398792,11.626632,3.4179351,6.173265,-1.2772399,1.6377009,-1.4636664,0.98499364,-1.1805048,1.0298103,-3.7886739,-0.30295897,-3.6698637,-1.1185848"
Hypnagogic,George Feely,Schaeffer Motor Dreams,2021,,Unknown to the Unknown,/mnt/d/UTTU/George Feely/George Feely - Schaeffer Motor Dreams - 02 Hypnagogic.mp3,123.046875,"-96.66512,68.01105,27.960234,23.348671,10.364336,14.61578,4.7254124,6.387426,0.576934,6.3911424,0.931637,0.43394202,-2.802704,2.5657563,-0.2840229,3.3471498,-1.3451539,1.4561958,-0.8161343,4.1918364"
Eastern Lilly,George Feely,Schaeffer Motor Dreams,2021,,Unknown to the Unknown,/mnt/d/UTTU/George Feely/George Feely - Schaeffer Motor Dreams - 03 Eastern Lilly.mp3,123.046875,"-99.65377,46.884007,34.002304,17.34604,6.6187243,16.226677,2.4754558,7.862102,-0.062132314,6.793787,-3.616077,2.4827962,-0.44470826,3.3966079,0.37351176,4.0561323,-5.365053,-2.2451622,-4.7351522,0.78531605"
XSTATIC,George Feely,XSTATIC,2021,,Unknown to the Unknown,/mnt/d/UTTU/George Feely/George Feely - XSTATIC - 01 XSTATIC.mp3,123.046875,"-107.31289,76.772606,32.02254,19.245598,7.5803165,10.832473,10.140898,3.2758832,1.6049999,4.294028,-0.9152386,3.3314776,1.5841478,2.2737985,-3.7027473,1.9773955,-0.8200423,0.29585853,-4.685783,0.083048455"
Spicy Mistress,George Feely,XSTATIC,2021,,Unknown to the Unknown,/mnt/d/UTTU/George Feely/George Feely - XSTATIC - 02 Spicy Mistress.mp3,129.19921875,"-120.67604,71.84036,30.768,25.376677,13.687362,13.426861,7.7570915,6.0066175,-1.5552645,2.9195256,-1.6379223,0.23419419,-0.74317133,2.2498872,-2.308208,2.8398314,-1.2645144,0.6313044,-3.9150176,-1.2009705"
I Just Want 2 Say,George Feely,XSTATIC,2021,,Unknown to the Unknown,/mnt/d/UTTU/George Feely/George Feely - XSTATIC - 03 I Just Want 2 Say.mp3,123.046875,"-131.19923,60.552193,20.59704,33.57456,24.189892,25.293793,14.233599,12.612962,7.8170037,7.8847346,3.4275646,4.6285763,-1.4355166,-0.25412717,-5.4865174,0.25136924,-3.89944,0.09902727,-2.700591,-1.0166618"
Give It To Me,Gettoblaster & DJ Deeon,Route 66,2021,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & DJ Deeon/Gettoblaster & DJ Deeon - Route 66 - 01 Give It To Me.mp3,129.19921875,"-171.62927,81.65324,22.425117,28.179579,17.276842,22.492104,15.188509,18.041155,7.912639,11.452655,8.906851,11.061721,8.359071,11.030419,8.575212,8.219628,5.7230806,6.3748474,4.518558,6.892684"
Knockin,Gettoblaster & DJ Deeon,Route 66,2021,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & DJ Deeon/Gettoblaster & DJ Deeon - Route 66 - 02 Knockin.mp3,129.19921875,"-115.371376,50.866337,12.882623,23.485367,2.491735,19.753824,6.6768546,16.050167,2.8068912,9.133908,4.613889,10.537435,6.0782247,8.5451145,2.6031191,2.7270572,-0.62104136,2.9040189,0.0144048305,1.3232181"
Route 66,Gettoblaster & DJ Deeon,Route 66,2021,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & DJ Deeon/Gettoblaster & DJ Deeon - Route 66 - 03 Route 66.mp3,129.19921875,"-140.76549,69.409805,13.804161,35.719032,24.040823,23.912485,10.960514,21.454327,6.823122,9.481777,14.080445,15.301558,5.617177,8.078888,8.39526,12.086316,1.5661684,7.21868,2.9005926,1.1134751"
Twerk It,Gettoblaster & DJ Deeon,Route 66,2021,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & DJ Deeon/Gettoblaster & DJ Deeon - Route 66 - 04 Twerk It.mp3,129.19921875,"-185.88284,79.437454,22.963175,37.289833,25.706879,32.481476,14.6085,21.232454,16.0211,18.32898,7.906345,8.621121,4.4217424,5.2755895,3.879929,6.709802,3.7174342,10.071741,6.4738326,4.5807314"
Chicago Gangsta,Gettoblaster & Robert Armani,Chicago Gangster,2022,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & Robert Armani/Gettoblaster & Robert Armani - Chicago Gangster - 01 Chicago Gangsta.mp3,129.19921875,"-133.50053,40.17425,12.278393,35.654568,13.210902,17.313408,7.3893375,12.961483,4.0531178,7.552928,3.658399,8.072404,0.9706885,5.402561,3.0134034,6.064148,-0.48008868,3.2235866,0.27576184,2.5006452"
That Shit,Gettoblaster & Robert Armani,Chicago Gangster,2022,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & Robert Armani/Gettoblaster & Robert Armani - Chicago Gangster - 02 That Shit.mp3,129.19921875,"-169.4414,65.61548,27.118252,33.291916,22.113104,30.326643,15.404848,15.800407,8.52363,10.465158,9.054669,12.5710125,9.957332,13.050242,10.2159,12.037379,2.2509942,3.4137084,-0.1462323,5.3399014"
Work The Box,Gettoblaster & Robert Armani,Chicago Gangster,2022,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & Robert Armani/Gettoblaster & Robert Armani - Chicago Gangster - 03 Work The Box.mp3,129.19921875,"-70.05972,44.302803,10.959591,33.03821,18.872425,29.631302,12.977765,12.978988,1.6475976,11.306887,2.0700061,6.3522887,4.161432,7.483308,2.5770988,6.261314,0.5464619,5.2780786,2.8295994,4.867166"
Tangerine,Gettoblaster & Robert Armani,Chicago Gangster,2022,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & Robert Armani/Gettoblaster & Robert Armani - Chicago Gangster - 04 Tangerine.mp3,123.046875,"-134.29428,45.561657,16.259352,27.34495,13.201821,24.253712,9.426437,12.593201,3.9611855,14.856941,7.7347636,9.276088,6.0473433,8.96062,2.9465528,8.073943,3.0996995,5.6558585,2.7801602,5.45583"
Do It,Gettoblaster & Robert Armani,Chicago Gangster,2022,,Unknown to the Unknown,/mnt/d/UTTU/Gettoblaster & Robert Armani/Gettoblaster & Robert Armani - Chicago Gangster - 05 Do It.mp3,129.19921875,"-154.55817,85.17494,11.841252,46.43782,30.391542,20.053577,6.445475,11.79791,12.834787,11.951767,2.452504,9.782287,6.2323675,9.282231,4.0710464,4.047137,4.1032324,4.8113213,0.21547374,1.7310345"
yFliÿinng vvv,Gnork,Dance Archives EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Gnork/Gnork - Dance Archives EP - 01 yFliÿinng vvv.mp3,135.99917763157896,"-151.1423,76.481125,45.80368,1.7197913,-13.750948,1.191092,-7.4113064,1.0630759,-7.567491,2.4281743,-4.173471,2.3737502,-2.1417267,2.0679052,4.1012926,7.592652,2.083783,2.3110564,-1.4222821,2.016317"
31seconds,Gnork,Dance Archives EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Gnork/Gnork - Dance Archives EP - 02 31seconds.mp3,135.99917763157896,"-66.01345,74.333,-16.16522,15.965293,0.11052475,3.8882234,-5.839911,6.062625,-6.6426373,7.976797,-3.1801176,3.0951486,-3.8974235,0.86092085,-1.6898457,0.5194071,0.24114212,1.5243756,-0.7406384,-2.2679749"
Floating,Gnork,Dance Archives EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Gnork/Gnork - Dance Archives EP - 03 Floating.mp3,67.99958881578948,"-99.15817,60.47677,16.933899,27.917192,8.354806,13.866972,1.3814248,2.0560184,-0.23957503,5.1591363,-1.7043469,6.1041145,-2.7283142,4.437718,-6.399278,4.847467,-5.564418,6.940439,-3.8029318,5.3227973"
Short Jam,Gnork,Dance Archives EP,2023,,Unknown to the Unknown,/mnt/d/UTTU/Gnork/Gnork - Dance Archives EP - 04 Short Jam.mp3,112.34714673913044,"-87.60317,98.45043,-15.323051,7.4965215,10.182421,16.298285,1.7602558,3.923903,1.3090388,2.8297024,-0.94588566,3.2351964,-1.9898627,3.922678,-1.6465648,3.4891682,0.81091434,4.470056,-0.50885385,5.580466"
Future Music,Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 01 Future Music.mp3,99.38401442307692,"-86.07211,73.464714,26.261911,32.19717,4.6153336,11.348384,-2.609957,12.603702,-1.9065293,1.9603134,-2.82672,3.3001795,1.7519255,4.2933397,2.5100555,4.4313483,-1.6442708,3.4083729,2.1475904,4.8554254"
Shroomz,Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 02 Shroomz.mp3,95.703125,"-115.95241,72.975845,21.59897,26.922705,4.396184,9.860702,0.54180485,7.7300844,1.0696418,0.8612831,-0.15383808,-0.8166177,0.96816367,-0.9533189,0.17920136,1.3568021,0.18706098,3.8624241,4.1029863,3.8397207"
Outro,Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 03 Outro.mp3,129.19921875,"-206.78275,55.419262,42.09799,33.66167,22.029121,32.574493,5.425314,0.36459056,-12.236873,2.811571,7.638552,12.2513685,-1.657189,3.7349904,5.540685,11.894135,-5.0124993,-3.907019,-0.12016946,5.050957"
Future Music (Legowelt Remix),Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 04 Future Music (Legowelt Remix).mp3,129.19921875,"-97.40316,144.16667,-20.095318,29.320478,-8.543849,-3.8483803,-1.0799098,0.35586804,0.94344753,3.9022205,0.06216528,4.6974792,2.3604121,2.7016783,2.5220091,1.9750273,0.40353867,0.37841654,1.0724077,4.3083453"
Outro (Fantastic Man Remix),Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 05 Outro (Fantastic Man Remix).mp3,129.19921875,"-131.57127,73.92573,36.016422,33.265068,12.32391,29.494312,6.9089303,10.271206,-3.6387882,9.662887,5.7629414,8.484497,-2.679041,1.4863794,5.4350286,10.508961,-0.879999,-0.023664564,1.6809084,7.6698737"
Space Beach,Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 01 Space Beach.mp3,123.046875,"-54.1501,43.300198,-48.530853,62.19815,-8.0051565,17.74454,-2.8559644,9.11815,-0.36605287,7.6221247,0.7474434,4.7988486,4.445399,3.5527909,-2.7342172,3.6046999,1.2366041,2.0045607,-1.4480683,2.7910602"
Double Sunset,Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 02 Double Sunset.mp3,123.046875,"-58.507584,28.602993,15.870311,32.855507,10.183311,18.444588,-4.3084836,12.024814,-5.5075574,8.890868,7.0407367,4.8903494,9.95319,3.6758776,7.1502943,7.772199,1.5942092,8.932762,-3.1684768,8.132442"
Give It All (Locked Groove 2),Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 03 Give It All (Locked Groove 2).mp3,89.10290948275862,"-35.800835,24.921192,2.9428,20.974602,3.9928386,4.314891,-6.6072874,-7.727108,-6.8728776,-0.63151896,-10.869186,-4.1183014,-18.043768,-4.550531,-16.61073,-0.34609625,-11.690335,-2.1423502,-13.070407,-4.0461726"
Bleeps (Locked Groove 1),Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 04 Bleeps (Locked Groove 1).mp3,89.10290948275862,"-230.08504,207.78954,0.30269536,-35.936497,-24.645987,-19.447376,-23.31823,-14.395157,-19.00211,-13.735372,-14.577042,-13.2126045,-9.795188,3.634831,11.511107,11.9781685,12.421683,11.398639,4.6742034,6.0144095"
Bleeps (Locked Groove 2),Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 05 Bleeps (Locked Groove 2).mp3,107.666015625,"-290.35513,131.04404,-41.809235,-55.216957,-30.446634,-14.5370655,12.519233,30.49744,26.481943,17.006142,10.040763,-1.5757121,-6.259271,2.3630283,8.915153,10.269831,10.181004,5.243508,2.4082406,8.208924"
Snare (Locked Groove 3),Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 06 Snare (Locked Groove 3).mp3,89.10290948275862,"-64.29963,12.307051,46.25319,30.764994,19.253717,26.645243,5.5281024,14.491005,-2.4006426,3.9146612,-4.2643476,2.7824314,-5.3003063,0.33540538,-1.6842777,1.3491029,-5.3204055,1.5938768,-5.044234,-0.2515891"
Give It All (Locked Groove),Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 07 Give It All (Locked Groove).mp3,184.5703125,"-16.967903,77.04292,-46.04368,-13.965302,-20.005407,-13.827076,-30.585981,-23.485144,-24.711403,-13.2943735,-14.269201,-7.5740104,-15.360691,-9.354792,-6.6276546,-0.78034645,-10.864559,-9.657368,-3.537414,7.2191195"
Give It All (locked Groove 3),Gnork Presents DJ Shark,Space Beach,2015,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark/Gnork Presents DJ Shark - Space Beach - 08 Give It All (locked Groove 3).mp3,184.5703125,"-10.881855,86.368065,-42.994797,-13.606004,-17.74116,-11.465772,-26.762388,-21.020933,-23.386963,-14.104436,-17.243284,-10.059277,-16.574217,-10.23115,-8.607054,-2.7131617,-10.739742,-9.523659,-6.6929507,2.1275349"
Future Music,Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 01 Future Music.mp3,99.38401442307692,"-86.07211,73.464714,26.261911,32.19717,4.6153336,11.348384,-2.609957,12.603702,-1.9065293,1.9603134,-2.82672,3.3001795,1.7519255,4.2933397,2.5100555,4.4313483,-1.6442708,3.4083729,2.1475904,4.8554254"
Shroomz,Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 02 Shroomz.mp3,95.703125,"-115.95241,72.975845,21.59897,26.922705,4.396184,9.860702,0.54180485,7.7300844,1.0696418,0.8612831,-0.15383808,-0.8166177,0.96816367,-0.9533189,0.17920136,1.3568021,0.18706098,3.8624241,4.1029863,3.8397207"
Outro,Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 03 Outro.mp3,129.19921875,"-206.78275,55.419262,42.09799,33.66167,22.029121,32.574493,5.425314,0.36459056,-12.236873,2.811571,7.638552,12.2513685,-1.657189,3.7349904,5.540685,11.894135,-5.0124993,-3.907019,-0.12016946,5.050957"
Future Music (Legowelt Remix),Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 04 Future Music (Legowelt Remix).mp3,129.19921875,"-97.40316,144.16667,-20.095318,29.320478,-8.543849,-3.8483803,-1.0799098,0.35586804,0.94344753,3.9022205,0.06216528,4.6974792,2.3604121,2.7016783,2.5220091,1.9750273,0.40353867,0.37841654,1.0724077,4.3083453"
Outro (Fantastic Man Remix),Gnork Presents DJ Shark,Gnork Presents DJ Shark - Future Music EP,2017,,Unknown to the Unknown,/mnt/d/UTTU/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP/Gnork Presents DJ Shark - Gnork Presents DJ Shark - Future Music EP - 05 Outro (Fantastic Man Remix).mp3,129.19921875,"-131.57127,73.92573,36.016422,33.265068,12.32391,29.494312,6.9089303,10.271206,-3.6387882,9.662887,5.7629414,8.484497,-2.679041,1.4863794,5.4350286,10.508961,-0.879999,-0.023664564,1.6809084,7.6698737"
Clocked,Groovy D,Red Alert,2022,,Unknown to the Unknown,/mnt/d/UTTU/Groovy D/Groovy D - Red Alert - 01 Clocked.mp3,129.19921875,"-130.91411,62.917656,32.40148,22.652863,0.60803574,3.658126,-12.601027,0.632457,-8.844126,-0.00023913932,-7.2903123,-2.372651,-4.926891,-4.0903735,-7.0258756,-5.226378,-6.23686,-0.85304487,1.5779661,-0.47931197"
Red Alert,Groovy D,Red Alert,2022,,Unknown to the Unknown,/mnt/d/UTTU/Groovy D/Groovy D - Red Alert - 02 Red Alert.mp3,129.19921875,"-112.693016,60.879215,18.633902,27.574959,12.117232,13.482555,12.178783,5.8748894,-2.0605795,7.538374,1.640063,1.5063648,-1.3701016,2.867816,0.77168727,5.652562,-1.8195935,-1.3800669,-3.371361,2.7414274"
Bumpin',Groovy D,Red Alert,2022,,Unknown to the Unknown,/mnt/d/UTTU/Groovy D/Groovy D - Red Alert - 03 Bumpin'.mp3,129.19921875,"-107.46176,64.14665,5.4142613,24.798767,3.404781,8.60637,6.3112073,6.665929,-2.761781,7.5624247,-3.9832425,3.0454004,-1.5103145,2.5549448,-1.95116,4.1640024,-3.4642797,1.4120408,-0.42371947,-3.3884137"
Problem Dog,Groovy D,Red Alert,2022,,Unknown to the Unknown,/mnt/d/UTTU/Groovy D/Groovy D - Red Alert - 04 Problem Dog.mp3,135.99917763157896,"-102.11401,44.70048,9.800013,39.39824,6.392965,12.421747,1.7723837,4.0283012,-2.0108097,4.3390856,-5.1766386,3.1130657,-3.9460175,4.603145,-5.6739125,0.47647107,-4.2762833,3.4756534,-1.9762844,3.3712497"
Fake Ska,Guchon,Fake House,2023,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Fake House - 01 Fake Ska.mp3,135.99917763157896,"-105.88864,94.93453,4.1338215,28.917196,2.950615,20.869808,3.2530665,9.926672,-0.03365801,7.294999,3.0788708,8.261208,-0.060263,4.461513,0.9427142,4.3460035,0.10325504,1.4410131,-3.1226635,1.0632329"
Dog Disco,Guchon,Fake House,2023,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Fake House - 02 Dog Disco.mp3,129.19921875,"-65.15443,62.13067,-17.294733,29.68931,-3.6790745,18.086477,-6.80563,12.410986,-6.835774,5.897084,-5.4161143,6.150133,-0.7574433,8.688651,-0.3228715,0.23182926,-4.78429,0.0072012977,-3.7639482,2.9168344"
Bad Orange,Guchon,Fake House,2023,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Fake House - 03 Bad Orange.mp3,129.19921875,"-55.043987,60.392433,-20.601442,32.71451,-4.538423,24.656925,1.3244537,15.455053,0.5503264,11.77477,-2.8990414,6.981369,-3.0370681,2.833601,-2.5861444,2.957647,-4.745605,3.7478004,-3.2014842,2.1251416"
My Phonk,Guchon,Fake House,2023,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Fake House - 04 My Phonk.mp3,135.99917763157896,"-98.08244,69.93079,0.705189,30.742428,-3.786809,14.662577,-8.4734535,5.617639,-9.16393,3.1962414,-3.9065602,2.7046435,-3.5074553,2.6371632,2.221498,4.4677486,-0.30503908,5.786574,0.18303305,5.4350343"
Pool Room,Guchon,Super Deluxe,2022,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Super Deluxe - 01 Pool Room.mp3,129.19921875,"-47.64232,62.669827,-0.89444464,19.746141,-0.3042945,15.424942,4.6419306,10.159872,3.9344099,9.082843,0.50427866,7.6476207,-1.9967855,4.3149595,-1.4695746,6.869301,1.3087847,4.629535,-0.9929647,4.6219172"
Lemonade,Guchon,Super Deluxe,2022,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Super Deluxe - 02 Lemonade.mp3,129.19921875,"-35.98577,63.306477,-2.1200175,29.907139,-12.521967,21.39983,-4.0672836,17.228748,-3.2170587,12.658346,-1.9856538,12.005919,1.2060272,8.906559,-1.580001,8.178528,1.558418,4.806941,-4.478061,1.9448732"
Weekend Starter,Guchon,Super Deluxe,2022,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Super Deluxe - 03 Weekend Starter.mp3,135.99917763157896,"-43.26377,64.82922,-10.844702,30.596535,3.1599443,20.221136,-3.1255486,11.671752,-5.313391,10.982981,-1.9518217,7.375605,-2.539981,5.2948184,0.079952985,9.434439,-1.539442,0.6360337,-2.880059,3.6395466"
Super Deluxe,Guchon,Super Deluxe,2022,,Unknown to the Unknown,/mnt/d/UTTU/Guchon/Guchon - Super Deluxe - 04 Super Deluxe.mp3,129.19921875,"-65.51616,74.6409,3.483262,10.946003,-1.5950893,11.461161,-2.704262,10.601116,2.9834428,13.455932,5.0262175,10.228625,2.1110418,3.826202,-1.4812869,5.889983,0.5027795,3.8948133,-1.9045287,0.3379958"
Momentum,Hugo Massien,Dance Trax Vol. 45,2022,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol. 45 - 01 Momentum.mp3,83.35433467741936,"-137.30028,42.56644,13.483871,18.518047,13.987485,18.216581,4.254227,10.312771,6.423533,6.2537885,4.408897,7.5952616,-0.63077134,3.0090308,-1.8824465,3.327195,0.56628036,3.9362586,1.4959351,8.411261"
Hexadecimel,Hugo Massien,Dance Trax Vol. 45,2022,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol. 45 - 02 Hexadecimel.mp3,172.265625,"-149.71542,64.106384,21.74898,26.954634,10.53812,13.610447,2.7974243,4.859496,4.3970294,5.5725813,0.97866577,2.913863,3.0501723,3.5701985,-1.689576,0.3359124,-4.414384,0.36087716,-2.7741132,4.1698713"
Twist & Turn,Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 01 Twist & Turn.mp3,83.35433467741936,"-94.26557,50.670704,30.134401,19.419333,21.715275,12.346828,2.0234547,7.1328835,3.4711392,10.0186,5.6874866,4.373244,1.7541097,4.7474284,5.408822,5.7837915,-1.7319323,4.327803,-1.3572834,0.21453704"
Twist & Turn (Jensen Interceptor Remix),Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 02 Twist & Turn (Jensen Interceptor Remix).mp3,129.19921875,"-82.17151,77.14011,5.784355,19.77532,8.540342,10.292367,-2.7503698,8.792063,-2.898798,8.722852,2.6443377,5.9354734,3.1687853,4.1313715,4.2631035,6.580245,3.056561,3.7126694,-2.193106,3.9854858"
Lust & Sound,Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 03 Lust & Sound.mp3,172.265625,"-131.87431,59.725033,40.787056,17.396776,9.298115,21.399841,-0.9323824,11.709729,-4.6244245,10.049192,-0.7825543,7.0188246,-0.8904878,-1.8741668,-4.9662075,-0.100126825,-1.0924474,-0.02783032,-3.1005092,1.1677492"
Hypnotik Rhythm Sequence (Feat. DJ Haus),Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 04 Hypnotik Rhythm Sequence (Feat. DJ Haus).mp3,95.703125,"-51.94151,70.8422,-2.766777,45.44288,9.215526,14.193317,-1.9135815,10.45204,-0.78424704,2.331024,-4.4388795,-1.6364532,-1.0832593,1.8727615,-1.2692274,0.69234455,-3.9839473,4.4081445,-0.7982524,2.4485388"
Random Access Memory (Feat. DJ Haus),Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 05 Random Access Memory (Feat. DJ Haus).mp3,99.38401442307692,"-88.548965,53.014286,23.010084,15.683371,5.3310986,19.239382,2.691256,12.947764,3.3558633,10.989872,2.0518515,11.128277,3.0729134,6.8031945,5.7249517,6.5198293,-1.5121609,5.9884863,1.5356836,6.297569"
Touch & Go,Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 06 Touch & Go.mp3,103.359375,"-113.97487,39.473095,50.314423,23.393747,10.317236,13.734233,-9.160696,8.61736,-3.5143857,9.57799,-4.0023236,4.443271,-0.13354823,-0.46700394,-2.3688667,0.22232771,-1.6981936,3.8295321,-1.5938936,0.15216345"
Fade To Black,Hugo Massien,Dance Trax Vol.21,2019,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Dance Trax Vol.21 - 07 Fade To Black.mp3,123.046875,"-68.742775,42.547886,6.6908064,24.869202,5.6913605,11.0506525,1.2262346,9.201631,-1.9202626,6.624668,-2.092463,1.0245007,-3.7678509,-0.94240516,-1.1168047,2.8358326,-3.9046843,0.5559981,-2.2879567,2.1749485"
Fuzzy Logic,Hugo Massien,Fuzzy Logic,2022,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Fuzzy Logic - 01 Fuzzy Logic.mp3,129.19921875,"-108.10383,20.043406,-7.114653,23.977972,3.5639634,4.187922,-4.43817,7.6099367,3.5412495,2.8459527,0.7109698,8.153166,9.542551,8.151396,0.10158177,6.106366,2.1085737,11.038964,7.379378,8.7841835"
Deep Blue,Hugo Massien,Fuzzy Logic,2022,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Fuzzy Logic - 02 Deep Blue.mp3,86.1328125,"-149.71251,69.941666,10.535828,17.858112,-3.8952904,15.3377285,1.7706888,5.564313,-0.20966819,6.190082,-6.560358,2.119684,-4.1581526,-3.0339954,-8.61024,-4.1849475,-8.113123,-2.0605006,-5.7671156,-2.0895662"
Mariana,Hugo Massien,Fuzzy Logic,2022,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Fuzzy Logic - 03 Mariana.mp3,123.046875,"-129.16872,100.09803,-14.797129,39.087837,13.116052,3.5503876,5.593443,3.7546709,0.51174885,-0.36032376,-1.3813238,2.8191307,-1.3712817,0.743765,-5.274337,-0.38083783,-6.7918253,-4.9076285,-8.02697,-2.5871863"
Trust Issues,Hugo Massien,Trust Issues,2021,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Trust Issues - 01 Trust Issues.mp3,83.35433467741936,"-104.9482,41.907757,22.05769,16.758076,21.87272,21.15736,-0.9794036,0.7612147,0.7060371,8.7905655,-2.9607575,-1.9609648,-4.678165,-0.9519303,-5.446573,2.6948214,-0.77049524,4.2230816,2.4928215,5.992802"
Don't Stop Moving,Hugo Massien,Trust Issues,2021,,Unknown to the Unknown,/mnt/d/UTTU/Hugo Massien/Hugo Massien - Trust Issues - 02 Don't Stop Moving.mp3,129.19921875,"-81.35293,74.61037,12.535951,30.571375,-7.638968,7.26953,-2.8198862,2.9145966,-4.4627266,1.763291,-5.4625196,-3.4308827,-7.9886785,-4.3269997,-6.0498385,0.16064051,-5.459589,-1.0158355,-2.023565,1.9102943"
TTDUB01,Huxley,Self Affirmation EP + Chambray Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Huxley/Huxley - Self Affirmation EP + Chambray Remix - 01 TTDUB01.mp3,129.19921875,"-142.45874,99.92543,29.763187,7.256263,-1.6455963,20.141779,12.694514,18.646852,0.46752155,5.8982673,5.112433,13.199791,2.3131258,5.095938,3.97575,3.7239854,0.69744086,-1.245453,-4.966278,-6.4529176"
TTDUB01 (Chambray Remix),Huxley,Self Affirmation EP + Chambray Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Huxley/Huxley - Self Affirmation EP + Chambray Remix - 02 TTDUB01 (Chambray Remix).mp3,129.19921875,"-135.78232,85.91019,38.777714,20.299429,9.460767,16.262398,-0.49375433,14.641461,9.201207,9.499219,3.8249784,10.584863,-0.09335475,3.4031146,2.8697731,3.8671885,-1.2555513,2.3247147,1.7371765,1.2448746"
Self Affirmation,Huxley,Self Affirmation EP + Chambray Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Huxley/Huxley - Self Affirmation EP + Chambray Remix - 03 Self Affirmation.mp3,64.599609375,"-88.83927,43.94373,12.06013,22.77127,13.233983,21.588057,-2.0386505,11.131589,5.6982436,8.863911,4.401016,11.932974,4.533956,10.34176,2.0409014,2.6771111,-1.9839343,5.9762235,-1.4810644,7.310932"
Self Affirmation (Instrumental),Huxley,Self Affirmation EP + Chambray Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Huxley/Huxley - Self Affirmation EP + Chambray Remix - 04 Self Affirmation (Instrumental).mp3,64.599609375,"-95.91234,43.005074,12.376276,23.53986,11.887681,22.30512,-2.0788267,11.929256,5.504046,9.16061,4.787215,13.099746,5.5219135,11.167613,2.278705,3.2360685,-1.04923,6.826853,-1.0461494,7.986538"
Tight Knitted,Huxley,Tight Knitted / Die Hard EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Huxley/Huxley - Tight Knitted - Die Hard EP - 01 Tight Knitted.mp3,129.19921875,"-95.38326,52.410866,0.74897265,26.64722,4.4752564,27.301903,11.241476,12.7541485,7.172584,12.6554785,4.8727927,6.144464,3.0446806,7.4049807,3.5924377,4.5968285,2.47185,4.581923,-1.1078179,3.2925067"
Die Hard,Huxley,Tight Knitted / Die Hard EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Huxley/Huxley - Tight Knitted - Die Hard EP - 02 Die Hard.mp3,123.046875,"-153.65771,89.33142,49.171684,24.13594,28.091066,23.68898,13.193198,11.247584,1.8287722,1.8235819,-1.2826668,0.8726632,-2.0766227,6.698323,-1.5609854,2.553251,-1.8392094,5.594077,3.36261,4.370095"
Dwams,Igor Tipura,Dwams,2016,,Unknown to the Unknown,/mnt/d/UTTU/Igor Tipura/Igor Tipura - Dwams - 01 Dwams.mp3,123.046875,"-99.52499,86.72178,19.297092,6.5716825,-17.851925,12.231451,-3.700755,11.46373,1.2747238,7.527292,-2.1391594,7.1437335,1.3876594,8.957714,6.0534554,7.836131,3.8401656,7.291233,2.8873708,3.3372705"
Dwams (Lauer Remix),Igor Tipura,Dwams,2016,,Unknown to the Unknown,/mnt/d/UTTU/Igor Tipura/Igor Tipura - Dwams - 02 Dwams (Lauer Remix).mp3,123.046875,"-96.51488,91.34382,6.7261157,21.086155,14.41578,19.681587,4.4376764,3.4419136,1.382063,6.3177395,2.0693743,5.842224,0.615912,5.689002,-1.991352,6.000721,-4.5294986,3.191978,-4.8299823,0.6123912"
Dwams,Igor Tipura,Dwams,2016,,Unknown to the Unknown,/mnt/d/UTTU/Igor Tipura - Dwams/Igor Tipura - Dwams - 01 Dwams.mp3,123.046875,"-99.52499,86.72178,19.297092,6.5716825,-17.851925,12.231451,-3.700755,11.46373,1.2747238,7.527292,-2.1391594,7.1437335,1.3876594,8.957714,6.0534554,7.836131,3.8401656,7.291233,2.8873708,3.3372705"
Dwams (Lauer Remix),Igor Tipura,Dwams,2016,,Unknown to the Unknown,/mnt/d/UTTU/Igor Tipura - Dwams/Igor Tipura - Dwams - 02 Dwams (Lauer Remix).mp3,123.046875,"-96.51488,91.34382,6.7261157,21.086155,14.41578,19.681587,4.4376764,3.4419136,1.382063,6.3177395,2.0693743,5.842224,0.615912,5.689002,-1.991352,6.000721,-4.5294986,3.191978,-4.8299823,0.6123912"
Second Life,Ilyes,Second Life + Yosh Remix,2022,,Unknown to the Unknown,/mnt/d/UTTU/Ilyes/Ilyes - Second Life + Yosh Remix - 01 Second Life.mp3,135.99917763157896,"-137.63957,81.42457,28.913233,24.196762,3.0051618,16.182156,0.24078454,8.756741,-1.0042831,6.9288626,-1.3814873,6.5096545,3.469216,3.5548499,-2.6002169,-2.5237882,-4.1052876,1.5243828,-0.57638794,1.473645"
Second Life (Yosh Remix),Ilyes,Second Life + Yosh Remix,2022,,Unknown to the Unknown,/mnt/d/UTTU/Ilyes/Ilyes - Second Life + Yosh Remix - 02 Second Life (Yosh Remix).mp3,107.666015625,"-92.77554,41.22844,8.922747,13.66579,-8.657509,4.482607,-11.506361,-5.679565,-7.3796577,-0.78817827,-0.26157826,6.2668214,-7.1965957,-4.137302,-17.449696,-0.19259144,-12.248703,-1.1815636,-8.9207535,2.1541917"
Wait For It,Ilyes,Second Life + Yosh Remix,2022,,Unknown to the Unknown,/mnt/d/UTTU/Ilyes/Ilyes - Second Life + Yosh Remix - 03 Wait For It.mp3,89.10290948275862,"-93.26292,67.262856,23.991772,18.175306,5.3669515,19.04333,-6.8922195,8.106836,-3.6015263,3.8265576,-2.025058,2.144819,-1.9691147,0.6807589,-0.7919808,1.0493615,-3.2201781,-0.11846336,-1.9889361,-0.070532896"
Ethereum,Ilyes,Second Life + Yosh Remix,2022,,Unknown to the Unknown,/mnt/d/UTTU/Ilyes/Ilyes - Second Life + Yosh Remix - 04 Ethereum.mp3,129.19921875,"-73.359886,70.92369,12.981749,18.902727,10.136788,14.727443,4.2471647,10.835021,0.29938832,5.2902656,0.19111523,2.984458,-1.9764986,2.6631958,-0.56491166,2.4177082,0.37551036,3.231836,-0.1908424,0.23179564"
ISS Liners,Ilyes,Second Life + Yosh Remix,2022,,Unknown to the Unknown,/mnt/d/UTTU/Ilyes/Ilyes - Second Life + Yosh Remix - 05 ISS Liners.mp3,129.19921875,"-128.3447,80.01247,26.59024,26.25883,11.6309,18.492771,-0.027148118,9.015586,-4.8143506,5.9847107,-2.5274353,5.3214955,-0.37701422,4.087521,0.77627283,2.9863274,-0.4604248,1.0501794,-0.94715965,0.2277419"
A World That Matters (Raw Mix),Innershades,A World That Matters,2016,,Unknown to the Unknown,/mnt/d/UTTU/Innershades/Innershades - A World That Matters - 01 A World That Matters (Raw Mix).mp3,129.19921875,"-92.51678,61.326477,9.656649,22.813515,4.2433844,21.805927,7.646292,19.722078,12.557407,20.576803,8.894159,14.312405,7.3104186,11.408211,3.7405202,11.358406,2.9781218,4.7149725,-0.52682835,4.0054483"
Inside Your Mind,Innershades,A World That Matters,2016,,Unknown to the Unknown,/mnt/d/UTTU/Innershades/Innershades - A World That Matters - 02 Inside Your Mind.mp3,123.046875,"-120.4034,85.98022,19.204313,35.125378,1.8616191,22.795334,-1.316592,10.110547,-0.8735437,8.970399,-0.07139334,4.30915,-4.132301,-1.5039536,0.133493,4.493174,-0.2261673,9.552037,4.4910173,7.263677"
Cruising At Sunset,Innershades,A World That Matters,2016,,Unknown to the Unknown,/mnt/d/UTTU/Innershades/Innershades - A World That Matters - 03 Cruising At Sunset.mp3,123.046875,"-124.937096,66.5537,26.995417,34.34443,0.6598937,12.010367,-9.653181,3.9106557,-2.8301067,13.909787,2.2637904,7.4823766,-0.8063523,1.4731055,2.7202697,0.5445499,-9.646358,-2.7329164,-4.5762515,-5.2797823"
DJ Haus - Machine Learning (Interplanetary Criminal Remix),Interplanetary Criminal,DJ Haus - Machine Learning (Interplanetary Criminal Remix),2020,,Unknown to the Unknown,/mnt/d/UTTU/Interplanetary Criminal/Interplanetary Criminal - DJ Haus - Machine Learning (Interplanetary Criminal Remix) - 01 DJ Haus - Machine Learning (Interplanetary Criminal Remix).mp3,129.19921875,"-165.96602,37.70786,37.06536,28.939657,12.477551,25.214035,4.1851788,18.821726,10.754567,11.588176,7.117095,7.546802,3.907921,5.0719357,3.9344893,6.466483,3.9833562,8.394057,3.7262313,5.940826"
Untitled A,Interplanetary Criminal & DJ Cosworth,Untitled,2022,,Unknown to the Unknown,/mnt/d/UTTU/Interplanetary Criminal & DJ Cosworth/Interplanetary Criminal & DJ Cosworth - Untitled - 01 Untitled A.mp3,135.99917763157896,"-127.972984,80.30091,-6.08436,43.14349,23.674545,10.086048,3.6783597,16.18762,8.885245,3.0064547,-0.6387949,6.3938293,2.0695848,3.6777558,0.09240881,3.125059,3.5041242,6.056157,-1.3009248,-1.633357"
Untitled B,Interplanetary Criminal & DJ Cosworth,Untitled,2022,,Unknown to the Unknown,/mnt/d/UTTU/Interplanetary Criminal & DJ Cosworth/Interplanetary Criminal & DJ Cosworth - Untitled - 02 Untitled B.mp3,129.19921875,"-183.95288,51.42032,44.633755,27.715464,22.51079,18.281483,15.2576,20.95293,4.3619447,6.513461,2.7237763,5.032758,-0.7256533,0.6710553,-2.2221909,0.103248246,-4.011244,1.4750522,-0.86824614,0.20357421"
Intimacy - Crisis Force,Intimacy,Crisis Force EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/Intimacy/Intimacy - Crisis Force EP - 01 Intimacy - Crisis Force.mp3,112.34714673913044,"-67.4544,128.46948,-27.890387,46.57317,-10.824426,17.21482,-6.4987364,5.066803,0.79608285,7.0964484,-5.322959,0.95755976,-0.17164113,-0.05564406,-1.5650429,1.2242169,-4.8078623,4.658542,1.7196069,-1.3809134"
Intimacy - Memory Card,Intimacy,Crisis Force EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/Intimacy/Intimacy - Crisis Force EP - 02 Intimacy - Memory Card.mp3,123.046875,"-75.79694,101.38358,23.938704,23.81723,0.34210584,13.98938,-9.208381,9.2530575,-2.1150556,7.44798,3.1245785,13.120781,-3.1256,-1.2962607,1.657057,4.559011,-11.475201,-4.5876822,-0.12757044,4.1309657"
Intimacy - Grid Projector,Intimacy,Crisis Force EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/Intimacy/Intimacy - Crisis Force EP - 03 Intimacy - Grid Projector.mp3,117.45383522727273,"-63.234077,141.26094,-13.874531,29.96792,-0.952243,11.308088,-3.5412068,15.135252,-1.5067958,7.809789,3.5880775,5.7663794,3.877875,3.7492108,1.7685419,7.72709,1.7178357,5.929667,1.2043585,-0.3257055"
Intimacy - Decisions In Life,Intimacy,Crisis Force EP,2016,,Unknown to the Unknown,/mnt/d/UTTU/Intimacy/Intimacy - Crisis Force EP - 04 Intimacy - Decisions In Life.mp3,123.046875,"-118.008484,135.3451,43.11063,15.501778,7.679255,6.530469,0.09360277,3.721938,-1.996328,3.7189965,0.8735235,3.0632086,0.38912883,1.3952016,-1.1855919,0.12938176,-5.759255,1.9355432,-1.9760492,-0.89292055"
Nasty90s,Jamie Unknown,Dance Trax Vol. 53,2023,,Unknown to the Unknown,/mnt/d/UTTU/Jamie Unknown/Jamie Unknown - Dance Trax Vol. 53 - 01 Nasty90s.mp3,129.19921875,"-38.950848,43.56899,7.0373826,26.875792,8.431512,15.3644905,3.5893655,13.162544,4.3105593,10.895189,0.6332547,6.4290586,-0.115308374,4.9471607,-0.21862228,5.9205747,1.3282079,7.3212085,3.656182,5.5398083"
Frenzy,Jamie Unknown,Dance Trax Vol. 53,2023,,Unknown to the Unknown,/mnt/d/UTTU/Jamie Unknown/Jamie Unknown - Dance Trax Vol. 53 - 02 Frenzy.mp3,135.99917763157896,"-89.1905,24.47137,5.8955445,24.54079,7.790963,24.897001,13.072206,20.143188,9.2694235,15.39127,8.017077,10.504073,3.3110006,8.673906,4.789166,8.247501,-3.8250153,-0.0724159,-1.816138,4.7176194"
The Repo Man,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 01 The Repo Man.mp3,143.5546875,"-99.5787,75.93634,32.85661,16.694014,10.329341,17.165215,-0.48368838,12.428948,1.6604894,10.401818,3.4885068,7.8266826,4.048052,4.875608,1.7953683,4.776164,2.3562553,5.2512946,2.5613291,5.077956"
Celestial 4,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 02 Celestial 4.mp3,135.99917763157896,"-86.4245,54.52311,14.26389,17.544987,8.003177,15.865295,2.731224,12.74221,2.8188918,6.3435884,3.4466794,10.885516,9.982324,8.473623,3.0997114,5.4258018,2.8734236,6.6840506,-0.41348976,4.7013164"
Wireframe,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 03 Wireframe.mp3,143.5546875,"-60.083916,82.04734,-11.208733,-7.8657413,-3.3000302,6.708165,6.871217,1.6282939,-2.0023189,10.765912,-5.305132,9.127721,1.4884772,3.4174879,0.1478624,6.6875844,2.1107574,8.481869,3.3648489,1.2002635"
Afterflare,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 04 Afterflare.mp3,69.83741554054055,"-104.57393,50.64319,28.507462,17.467632,6.80596,15.207141,-0.19972238,18.648455,1.8193343,13.974228,1.8761523,11.105449,8.523965,12.641252,7.161718,4.107624,-1.1589903,3.1322768,-2.8683064,-4.2465997"
The Repo Man,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code - Dance Trax Vol.19/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 01 The Repo Man.mp3,143.5546875,"-99.5787,75.93634,32.85661,16.694014,10.329341,17.165215,-0.48368838,12.428948,1.6604894,10.401818,3.4885068,7.8266826,4.048052,4.875608,1.7953683,4.776164,2.3562553,5.2512946,2.5613291,5.077956"
Celestial 4,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code - Dance Trax Vol.19/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 02 Celestial 4.mp3,135.99917763157896,"-86.4245,54.52311,14.26389,17.544987,8.003177,15.865295,2.731224,12.74221,2.8188918,6.3435884,3.4466794,10.885516,9.982324,8.473623,3.0997114,5.4258018,2.8734236,6.6840506,-0.41348976,4.7013164"
Wireframe,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code - Dance Trax Vol.19/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 03 Wireframe.mp3,143.5546875,"-60.083916,82.04734,-11.208733,-7.8657413,-3.3000302,6.708165,6.871217,1.6282939,-2.0023189,10.765912,-5.305132,9.127721,1.4884772,3.4174879,0.1478624,6.6875844,2.1107574,8.481869,3.3648489,1.2002635"
Afterflare,Jensen Interceptor & Assembler Code,Dance Trax Vol.19,2019,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & Assembler Code - Dance Trax Vol.19/Jensen Interceptor & Assembler Code - Dance Trax Vol.19 - 04 Afterflare.mp3,69.83741554054055,"-104.57393,50.64319,28.507462,17.467632,6.80596,15.207141,-0.19972238,18.648455,1.8193343,13.974228,1.8761523,11.105449,8.523965,12.641252,7.161718,4.107624,-1.1589903,3.1322768,-2.8683064,-4.2465997"
Ride,Jensen Interceptor & DJ Fuckoff,Club Angels EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & DJ Fuckoff/Jensen Interceptor & DJ Fuckoff - Club Angels EP - 01 Ride.mp3,151.99908088235293,"-49.48952,76.52991,22.648977,8.412665,7.1098566,19.158857,0.6637254,18.837126,4.107105,14.364833,0.9203509,7.6919646,4.699856,8.266803,1.1132063,5.889096,3.1924706,5.9045973,-0.27811202,5.708269"
Ride (Dagga Remix),Jensen Interceptor & DJ Fuckoff,Club Angels EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & DJ Fuckoff/Jensen Interceptor & DJ Fuckoff - Club Angels EP - 02 Ride (Dagga Remix).mp3,143.5546875,"-33.27609,73.47066,3.9643114,17.462414,3.9145443,18.287258,5.9877677,13.746435,5.2870946,9.471816,2.576543,6.088947,3.3143008,6.3353224,-0.48896468,3.823587,1.1998922,1.8914399,1.8571256,2.7795403"
Drop Your Pants,Jensen Interceptor & DJ Fuckoff,Club Angels EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & DJ Fuckoff/Jensen Interceptor & DJ Fuckoff - Club Angels EP - 03 Drop Your Pants.mp3,80.74951171875,"-23.353785,66.1144,-4.158887,16.818075,7.5030446,17.26047,3.6537805,11.407423,5.6655736,6.194946,3.407582,2.8469415,1.4915992,6.639316,0.25192055,5.6001163,1.2124089,5.7598743,0.37193984,5.350278"
Boy U Nasty,Jensen Interceptor & DJ Fuckoff,Club Angels EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor & DJ Fuckoff/Jensen Interceptor & DJ Fuckoff - Club Angels EP - 04 Boy U Nasty.mp3,78.30255681818181,"-77.528946,85.52733,24.742767,25.99263,4.9132876,11.508371,-4.074647,5.209252,-0.771062,5.404217,-1.4782302,2.4157286,-0.6594044,1.9103063,0.40098074,2.975312,-1.9864827,3.8667057,-0.8764271,1.2411046"
Sweat Feat. DJ Deeon,Jensen Interceptor ft DJ Deeon,Master Control Program EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor ft DJ Deeon/Jensen Interceptor ft DJ Deeon - Master Control Program EP - 01 Sweat Feat. DJ Deeon.mp3,135.99917763157896,"-53.568836,47.54978,9.380645,13.076391,10.121676,16.648323,-0.94180566,14.222845,1.5700479,15.50539,-1.0609549,1.241962,1.2317172,7.1089797,5.4028225,6.5446906,-0.21801119,7.845108,-1.5723902,-3.1239417"
MCP (Swallowed My Tab Mix),Jensen Interceptor ft DJ Deeon,Master Control Program EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor ft DJ Deeon/Jensen Interceptor ft DJ Deeon - Master Control Program EP - 02 MCP (Swallowed My Tab Mix).mp3,92.28515625,"-50.359875,69.63628,7.907994,24.694628,9.191577,20.005512,-1.0834812,9.075164,1.5379716,7.5207105,0.5197389,3.2235084,0.51421046,5.174544,-0.21278088,3.1017032,-1.8916537,2.314539,-2.0045362,-0.47308823"
Ridin',Jensen Interceptor ft DJ Deeon,Master Control Program EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/Jensen Interceptor ft DJ Deeon/Jensen Interceptor ft DJ Deeon - Master Control Program EP - 03 Ridin'.mp3,112.34714673913044,"-59.489464,59.572456,6.4579244,43.239098,17.833776,20.565989,5.5063963,17.253948,4.878059,10.296997,2.0753794,6.1233,2.883264,5.3561196,2.6138618,5.82401,1.507065,3.479545,0.6825594,3.3603365"
Friday Suspense,Jigsaw Mind,Dance Trax Vol. 40,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jigsaw Mind/Jigsaw Mind - Dance Trax Vol. 40 - 01 Friday Suspense.mp3,129.19921875,"-61.254215,56.127205,16.531015,31.357231,6.757655,21.361904,-0.6300283,16.781668,0.93891233,12.250363,0.78291947,7.805073,-1.7825037,3.7959812,1.8003429,4.2237325,-1.706031,4.2529516,-0.31634256,5.483797"
Beat Bounce,Jigsaw Mind,Dance Trax Vol. 40,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jigsaw Mind/Jigsaw Mind - Dance Trax Vol. 40 - 02 Beat Bounce.mp3,83.35433467741936,"-76.37135,70.900696,2.0997117,19.590357,0.8153673,14.103155,2.9185107,1.5452639,6.9371786,6.3092713,1.8254896,1.1384823,0.8537908,6.2268014,-4.0736346,2.9617078,-2.1587083,3.765181,-2.5846822,6.126737"
Beeps,Jigsaw Mind,Dance Trax Vol. 40,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jigsaw Mind/Jigsaw Mind - Dance Trax Vol. 40 - 03 Beeps.mp3,129.19921875,"-47.837177,66.119545,19.430868,24.216938,-6.428984,14.36233,-0.5543283,6.1801567,-1.240117,9.718514,0.041670743,5.7259054,-0.6177262,6.0903487,0.5381859,5.155173,1.11709,4.3572173,1.7231436,4.0677433"
Almost Dead Feat. D3AD6OY,Jonah Almost,Almost Dead Feat. D3AD6OY,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jonah Almost/Jonah Almost - Almost Dead Feat. D3AD6OY - 01 Almost Dead Feat. D3AD6OY.mp3,86.1328125,"-9.680975,77.057144,-0.18461028,14.013304,1.9975748,6.173814,-0.6009366,0.30782598,-0.92095554,0.8843455,-5.7434726,-4.1981177,-6.468923,0.36043593,0.8008076,4.8524666,0.8958955,3.6236556,-1.4108993,0.10394499"
Russian Roulette,Jonah Almost,Almost Dead Feat. D3AD6OY,2022,,Unknown to the Unknown,/mnt/d/UTTU/Jonah Almost/Jonah Almost - Almost Dead Feat. D3AD6OY - 02 Russian Roulette.mp3,135.99917763157896,"-50.637463,88.03568,18.344944,5.7491794,2.8355222,5.9737053,2.9384582,10.514261,-3.3328605,6.9750147,-1.9788373,2.2538078,-2.4104009,4.243985,1.8469838,4.3220735,-1.3393058,4.6173167,-0.8954851,2.3422716"
The Hunt,K Man The Phantom,The Hunt,2023,,Unknown to the Unknown,/mnt/d/UTTU/K Man The Phantom/K Man The Phantom - The Hunt - 01 The Hunt.mp3,107.666015625,"-189.14069,78.80492,15.583093,24.07712,-2.1398225,14.729572,7.975743,11.18646,5.6782503,5.8264427,2.1326115,3.0857198,-3.1426806,1.5659583,-1.0449735,0.011444498,-1.1753545,0.3532781,-1.0846596,0.52026576"
Reaction Feat. Zoey Guyette,K Man The Phantom,The Hunt,2023,,Unknown to the Unknown,/mnt/d/UTTU/K Man The Phantom/K Man The Phantom - The Hunt - 02 Reaction Feat. Zoey Guyette.mp3,107.666015625,"-101.99691,96.9472,0.34778795,20.508278,2.0507958,10.918183,1.8809025,8.555766,3.8949797,8.71182,3.9837515,5.599848,1.1496918,3.2011108,-1.2497575,1.8335989,-1.5355107,-0.00806207,-3.9397545,0.48291412"
Memphis 29,KETTAMA,Dance Trax Vol.23,2019,,Unknown to the Unknown,/mnt/d/UTTU/KETTAMA/KETTAMA - Dance Trax Vol.23 - 01 Memphis 29.mp3,129.19921875,"-75.53713,65.34701,12.779453,22.075298,-1.1786188,13.047753,5.2899165,11.031771,1.90352,11.501653,1.2521197,5.9313583,2.194255,3.4938385,0.09002735,6.6149354,-0.7563204,2.6000018,0.46099013,3.7166548"
Did I Tell U,KETTAMA,Dance Trax Vol.23,2019,,Unknown to the Unknown,/mnt/d/UTTU/KETTAMA/KETTAMA - Dance Trax Vol.23 - 02 Did I Tell U.mp3,129.19921875,"-95.41017,61.30797,8.381026,17.334063,-3.9693701,12.292833,5.083972,6.689706,0.7085995,6.559867,-2.0938709,-0.033980723,-2.4692612,5.7460413,4.1266847,2.899329,-4.0604763,1.531265,0.33493334,6.1796975"
Comeragh Sport,KETTAMA,Dance Trax Vol.23,2019,,Unknown to the Unknown,/mnt/d/UTTU/KETTAMA/KETTAMA - Dance Trax Vol.23 - 03 Comeragh Sport.mp3,107.666015625,"-75.066025,69.56409,19.459034,26.117002,5.3666444,17.111021,10.326613,13.281334,-2.202956,10.814155,1.9002355,4.1350307,2.6921253,2.3130238,-0.47069913,3.1623356,-5.165455,0.33726415,-1.7761524,0.53209245"
Stay Still,KETTAMA,Dance Trax Vol.23,2019,,Unknown to the Unknown,/mnt/d/UTTU/KETTAMA/KETTAMA - Dance Trax Vol.23 - 04 Stay Still.mp3,135.99917763157896,"-93.931076,74.32179,19.36729,22.635605,-2.0489826,12.092203,-3.9066837,1.1551387,-2.8470438,7.1082954,-0.08773347,3.9112377,-0.39895254,-0.41458395,-4.6821523,3.1850333,0.20655684,3.4102166,-3.0750453,-0.96905017"
KETTAMA b2b DJ Haus b2b DJ Q Pt.1,KETTAMA b2b DJ Haus b2b DJ Q at Beatherder Festival 2019,KETTAMA b2b DJ Haus b2b DJ Q at Beatherder,2019,,Unknown to the Unknown,/mnt/d/UTTU/KETTAMA b2b DJ Haus b2b DJ Q at Beatherder Festival 2019/KETTAMA b2b DJ Haus b2b DJ Q at Beatherder Festival 2019 - KETTAMA b2b DJ Haus b2b DJ Q at Beatherder - 01 KETTAMA b2b DJ Haus b2b DJ Q Pt.1.mp3,129.19921875,"-124.23669,57.215317,-2.1659596,21.361279,0.1894432,13.119638,-0.35463488,7.5270257,-0.85173,8.17698,-0.55737454,4.249018,0.29678616,2.0049367,-0.8640866,2.452088,-2.435299,2.6068761,-0.97007793,1.8373888"
KETTAMA b2b DJ Haus b2b DJ Q Pt.2,KETTAMA b2b DJ Haus b2b DJ Q at Beatherder Festival 2019,KETTAMA b2b DJ Haus b2b DJ Q at Beatherder,2019,,Unknown to the Unknown,/mnt/d/UTTU/KETTAMA b2b DJ Haus b2b DJ Q at Beatherder Festival 2019/KETTAMA b2b DJ Haus b2b DJ Q at Beatherder Festival 2019 - KETTAMA b2b DJ Haus b2b DJ Q at Beatherder - 02 KETTAMA b2b DJ Haus b2b DJ Q Pt.2.mp3,129.19921875,"-104.7854,55.56193,-1.6855143,18.478138,0.5278738,12.111615,0.9531169,8.665697,0.14421037,6.993113,-1.2521862,4.0668106,-0.33360636,3.2740686,0.31318223,4.075341,-1.6057131,2.4690788,-1.4771105,1.9583021"
Cult Of Tau,KILL THE VOID,Cult Of Tau + Assembler Code Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/KILL THE VOID/KILL THE VOID - Cult Of Tau + Assembler Code Remix - 01 Cult Of Tau.mp3,143.5546875,"-49.01431,68.74662,3.6570706,26.346512,8.025796,16.417864,3.3783314,7.336888,2.4353232,7.0704083,0.29448873,2.698914,-1.3035653,5.2861943,-1.2981715,4.200095,-1.003669,4.005657,-0.34109697,0.1855956"
Kill The Void - Cult Of Tau (Assembler Code Remix),KILL THE VOID,Cult Of Tau + Assembler Code Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/KILL THE VOID/KILL THE VOID - Cult Of Tau + Assembler Code Remix - 02 Kill The Void - Cult Of Tau (Assembler Code Remix).mp3,92.28515625,"-126.10943,71.01503,25.607622,13.563554,18.820314,14.332864,7.7679214,8.694035,2.9913914,9.710826,3.6306312,7.415409,3.5950806,5.534082,3.2441506,5.345914,2.486264,5.654363,2.3663206,4.020668"
Cosmopendium,KILL THE VOID,Cult Of Tau + Assembler Code Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/KILL THE VOID/KILL THE VOID - Cult Of Tau + Assembler Code Remix - 03 Cosmopendium.mp3,135.99917763157896,"-74.260925,87.89448,-1.7103374,12.028913,1.8114376,7.866416,1.1227331,5.7043476,0.8324744,3.6270816,-2.1475046,1.5076228,-1.3411584,1.5965964,-4.0962877,-0.22095436,-2.1838322,0.6141068,-4.0041757,1.4222982"
Chariot Of Love,KILL THE VOID,Cult Of Tau + Assembler Code Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/KILL THE VOID/KILL THE VOID - Cult Of Tau + Assembler Code Remix - 04 Chariot Of Love.mp3,99.38401442307692,"-183.47687,128.18512,-2.4906602,22.052656,8.521709,7.1153603,4.6168633,6.8433504,1.9846178,2.1527104,-0.21090472,2.4907992,-1.2637705,1.0592966,-2.198187,0.25148818,-1.9319197,-0.730772,-3.7803166,-0.67053795"
Crystal Caves,Kloke,Cosmik Connection Vol.2,2022,,Unknown to the Unknown,/mnt/d/UTTU/Kloke/Kloke - Cosmik Connection Vol.2 - 01 Crystal Caves.mp3,107.666015625,"-36.10458,37.182133,-3.5318742,16.088545,-9.144041,9.222443,-5.019125,8.815202,-0.53859997,5.677418,-4.69032,3.6919322,-4.172727,2.7067764,-0.5755336,4.4951334,-0.73753524,5.2521544,-1.4532604,2.9263453"
All Around,Kloke,Cosmik Connection Vol.2,2022,,Unknown to the Unknown,/mnt/d/UTTU/Kloke/Kloke - Cosmik Connection Vol.2 - 02 All Around.mp3,107.666015625,"-22.830929,59.781902,7.7411246,12.567583,-4.026103,5.6665726,-3.1053731,6.6713824,-4.0705433,4.3388824,-1.2249537,4.836433,-1.9911071,-0.70129544,-4.7092624,3.2570934,-1.3188293,1.4447465,-1.1965308,6.4270287"
Dreams,Kloke,Cosmik Connection Vol.2,2022,,Unknown to the Unknown,/mnt/d/UTTU/Kloke/Kloke - Cosmik Connection Vol.2 - 03 Dreams.mp3,107.666015625,"-36.347565,38.89621,13.2933035,21.371838,4.986587,9.456492,-2.7813072,5.737018,-4.2253294,0.6840373,-7.7431636,4.338307,-7.2296953,5.1147385,-3.1107936,6.9444313,-5.742777,3.6298795,-4.539336,3.6181905"
Rhythm Equation,Kloke,Cosmik Connection Vol.2,2022,,Unknown to the Unknown,/mnt/d/UTTU/Kloke/Kloke - Cosmik Connection Vol.2 - 04 Rhythm Equation.mp3,161.4990234375,"-58.95291,70.12868,9.154762,21.081099,4.510252,10.2991085,-2.2532082,5.6273227,-4.9275913,6.037246,-3.0219061,1.9466004,-2.6447957,3.551679,-1.7805831,3.6325467,-0.7043409,5.6533484,1.9499254,5.384062"
Dragon Drop,Kodiak,Dragon Drop + Eliphino Remix,2013,,Unknown to the Unknown,/mnt/d/UTTU/Kodiak/Kodiak - Dragon Drop + Eliphino Remix - 01 Dragon Drop.mp3,112.34714673913044,"-36.594612,74.16498,13.210414,12.423468,-2.518712,12.96697,-4.0687404,6.502968,-2.712657,1.0965209,2.1184494,2.6872578,3.736409,4.2043934,-1.1870891,2.3800395,0.50344515,3.9036367,-2.5639129,3.6003385"
Egyptian Kings,Kodiak,Dragon Drop + Eliphino Remix,2013,,Unknown to the Unknown,/mnt/d/UTTU/Kodiak/Kodiak - Dragon Drop + Eliphino Remix - 02 Egyptian Kings.mp3,129.19921875,"-2.5035648,72.727,4.3950124,8.550788,-0.31230554,11.3493185,-2.793495,11.001991,0.3692254,4.468212,-3.2100263,4.0249968,-5.1674824,4.5254774,-4.986034,2.866719,-4.089573,1.599194,-2.580773,-1.6744287"
Dragon Drop (Eliphino Remix),Kodiak,Dragon Drop + Eliphino Remix,2013,,Unknown to the Unknown,/mnt/d/UTTU/Kodiak/Kodiak - Dragon Drop + Eliphino Remix - 03 Dragon Drop (Eliphino Remix).mp3,83.35433467741936,"-19.619596,59.839043,12.330206,18.260946,0.92548156,10.771837,-4.798361,9.853671,-7.010367,1.1226414,-5.6140313,0.37735057,-3.3540168,6.132536,-1.7848104,2.3330545,-1.8209766,-0.9595828,-5.2299066,2.791626"
Just A Little (Sunday Service),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear/Krystal Klear - Dedication EP (FREE DOWLOAD) - 01 Just A Little (Sunday Service).mp3,83.35433467741936,"-12.260172,40.996883,7.492301,12.602506,7.7353196,16.302826,-0.6976277,3.895176,-1.706549,9.915963,-3.6009986,4.618885,-1.5955119,3.4861581,0.65756226,0.6339405,-5.037363,-0.10336094,-5.228219,-1.1676705"
Just A Little (Twilo Mix),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear/Krystal Klear - Dedication EP (FREE DOWLOAD) - 02 Just A Little (Twilo Mix).mp3,161.4990234375,"-34.471973,40.250515,18.814602,5.8963094,-8.706907,5.6307874,-5.3205314,2.5843778,-2.0395205,4.4979415,-4.468737,2.3638399,-1.9866979,1.2729895,-5.0697474,-2.1366415,-5.468939,0.9154218,-6.520666,1.4398085"
Dedication (Sound Factory Mix),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear/Krystal Klear - Dedication EP (FREE DOWLOAD) - 03 Dedication (Sound Factory Mix).mp3,63.02400914634146,"-38.10242,27.457884,21.409641,10.392298,6.418974,12.15671,-0.06812916,3.2912242,-1.6954514,7.5381727,-4.180581,-1.5738515,-5.7739186,-1.1915141,-4.2335987,1.9578432,-5.9050817,1.1599752,-3.1656828,1.3638076"
Dedication (N_A_S_A Mix),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear/Krystal Klear - Dedication EP (FREE DOWLOAD) - 04 Dedication (N_A_S_A Mix).mp3,135.99917763157896,"-53.339783,55.372356,35.163292,21.552011,11.264881,23.660295,5.453689,11.909494,0.7920525,8.6263485,1.5905467,2.0834644,-0.7850012,2.4977438,-0.5040918,5.060916,-4.824487,1.856158,-0.42502362,2.5110598"
Just A Little (Sunday Service),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear - Dedication EP (FREE DOWLOAD)/Krystal Klear - Dedication EP (FREE DOWLOAD) - 01 Just A Little (Sunday Service).mp3,83.35433467741936,"-12.260172,40.996883,7.492301,12.602506,7.7353196,16.302826,-0.6976277,3.895176,-1.706549,9.915963,-3.6009986,4.618885,-1.5955119,3.4861581,0.65756226,0.6339405,-5.037363,-0.10336094,-5.228219,-1.1676705"
Just A Little (Twilo Mix),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear - Dedication EP (FREE DOWLOAD)/Krystal Klear - Dedication EP (FREE DOWLOAD) - 02 Just A Little (Twilo Mix).mp3,161.4990234375,"-34.471973,40.250515,18.814602,5.8963094,-8.706907,5.6307874,-5.3205314,2.5843778,-2.0395205,4.4979415,-4.468737,2.3638399,-1.9866979,1.2729895,-5.0697474,-2.1366415,-5.468939,0.9154218,-6.520666,1.4398085"
Dedication (Sound Factory Mix),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear - Dedication EP (FREE DOWLOAD)/Krystal Klear - Dedication EP (FREE DOWLOAD) - 03 Dedication (Sound Factory Mix).mp3,63.02400914634146,"-38.10242,27.457884,21.409641,10.392298,6.418974,12.15671,-0.06812916,3.2912242,-1.6954514,7.5381727,-4.180581,-1.5738515,-5.7739186,-1.1915141,-4.2335987,1.9578432,-5.9050817,1.1599752,-3.1656828,1.3638076"
Dedication (N_A_S_A Mix),Krystal Klear,Dedication EP (FREE DOWLOAD),2018,,Unknown to the Unknown,/mnt/d/UTTU/Krystal Klear - Dedication EP (FREE DOWLOAD)/Krystal Klear - Dedication EP (FREE DOWLOAD) - 04 Dedication (N_A_S_A Mix).mp3,135.99917763157896,"-53.339783,55.372356,35.163292,21.552011,11.264881,23.660295,5.453689,11.909494,0.7920525,8.6263485,1.5905467,2.0834644,-0.7850012,2.4977438,-0.5040918,5.060916,-4.824487,1.856158,-0.42502362,2.5110598"
I Feel Lit,"LA-4A, Ambivalent",I Feel Lit + Alden Tyrell Remix,2016,,Unknown to the Unknown,"/mnt/d/UTTU/LA-4A, Ambivalent/LA-4A, Ambivalent - I Feel Lit + Alden Tyrell Remix - 01 I Feel Lit.mp3",129.19921875,"-110.24458,77.16503,26.591906,28.751305,12.965664,21.23309,9.416498,14.512566,9.655824,11.460751,7.1618924,8.377264,4.582286,11.886,6.631249,5.1611557,0.110877626,4.129192,2.3501627,6.5250583"
Alarm (Chirp Mix),"LA-4A, Ambivalent",I Feel Lit + Alden Tyrell Remix,2016,,Unknown to the Unknown,"/mnt/d/UTTU/LA-4A, Ambivalent/LA-4A, Ambivalent - I Feel Lit + Alden Tyrell Remix - 02 Alarm (Chirp Mix).mp3",83.35433467741936,"-123.75342,62.346626,40.786003,27.731812,19.63446,23.313545,10.645776,12.936126,4.8301597,11.87762,5.780329,9.587476,0.8115932,4.69243,3.9374144,5.6044664,-0.7710366,4.712973,1.44857,5.504791"
I Feel Lit (Alden Tyrell Remix),"LA-4A, Ambivalent",I Feel Lit + Alden Tyrell Remix,2016,,Unknown to the Unknown,"/mnt/d/UTTU/LA-4A, Ambivalent/LA-4A, Ambivalent - I Feel Lit + Alden Tyrell Remix - 03 I Feel Lit (Alden Tyrell Remix).mp3",129.19921875,"-65.223785,68.092735,29.554457,29.791573,9.86988,20.592094,1.735706,6.2521963,0.3545195,8.327682,-0.6754855,4.1377883,1.1662865,4.504972,5.62618,7.1782737,-4.7412076,0.9764403,-0.52835935,0.8000829"
Freeze,Lady Ann,Freeze (Tim Reaper Remix),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lady Ann/Lady Ann - Freeze (Tim Reaper Remix) - 01 Freeze.mp3,161.4990234375,"-74.69491,63.89775,-7.9968753,28.487398,10.844041,1.8715062,9.668344,2.2598786,5.0951743,6.685084,0.7261012,6.1619387,-2.4556396,3.2376971,-3.365228,0.26181838,5.019075,9.950612,11.125739,16.250353"
Freeze (Tim Reaper Remix),Lady Ann,Freeze (Tim Reaper Remix),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lady Ann/Lady Ann - Freeze (Tim Reaper Remix) - 02 Freeze (Tim Reaper Remix).mp3,112.34714673913044,"-42.676968,46.617386,8.367469,28.3248,8.916755,10.691142,0.06329651,5.3320117,-2.1421456,3.012619,-5.895262,-0.4395105,-5.677963,-0.15428725,-8.816343,-1.2601571,-4.8359847,1.3253528,-6.9169474,2.9113245"
Freeze,Lady Ann,Freeze (Tim Reaper Remix),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lady Ann - Freeze (Tim Reaper Remix)/Lady Ann - Freeze (Tim Reaper Remix) - 01 Freeze.mp3,161.4990234375,"-74.69491,63.89775,-7.9968753,28.487398,10.844041,1.8715062,9.668344,2.2598786,5.0951743,6.685084,0.7261012,6.1619387,-2.4556396,3.2376971,-3.365228,0.26181838,5.019075,9.950612,11.125739,16.250353"
Freeze (Tim Reaper Remix),Lady Ann,Freeze (Tim Reaper Remix),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lady Ann - Freeze (Tim Reaper Remix)/Lady Ann - Freeze (Tim Reaper Remix) - 02 Freeze (Tim Reaper Remix).mp3,112.34714673913044,"-42.676968,46.617386,8.367469,28.3248,8.916755,10.691142,0.06329651,5.3320117,-2.1421456,3.012619,-5.895262,-0.4395105,-5.677963,-0.15428725,-8.816343,-1.2601571,-4.8359847,1.3253528,-6.9169474,2.9113245"
Water Reflection (Intro),Lake Haze,Force Of Nature,2014,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Force Of Nature - 01 Water Reflection (Intro).mp3,135.99917763157896,"-168.96402,128.87845,16.66167,11.451296,12.792595,18.690542,4.785373,-9.797245,-8.201705,0.6184721,1.0808331,2.4831085,4.5008163,13.52954,10.294725,5.2598104,-1.6595732,2.789986,5.9133735,9.752906"
Brandy Riddim,Lake Haze,Force Of Nature,2014,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Force Of Nature - 02 Brandy Riddim.mp3,86.1328125,"-121.32831,91.20745,23.437048,10.339982,4.4672666,5.2883396,9.154715,12.334651,1.4498183,11.916677,-4.156461,2.3262372,-0.62866414,-1.6593366,-3.437444,5.9091344,3.1946633,4.985006,-1.9065759,-1.9798427"
Typhoon Riddim,Lake Haze,Force Of Nature,2014,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Force Of Nature - 03 Typhoon Riddim.mp3,92.28515625,"-51.60823,62.55136,6.3583035,25.574322,11.406528,24.062374,6.527474,14.356461,3.0985844,5.766952,1.6992222,8.60326,2.6096227,7.6867785,2.9383662,6.7172728,0.5016424,4.8280735,4.0704703,8.762365"
Vapour Riddim,Lake Haze,Force Of Nature,2014,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Force Of Nature - 04 Vapour Riddim.mp3,86.1328125,"-123.5425,77.28174,-7.9562616,14.839224,2.7115586,0.348,0.4136036,5.9110513,-2.3528655,11.600856,1.3390723,6.1758504,6.2200437,8.97774,-1.3253349,2.237478,-2.8422108,-0.33526263,-1.5296899,2.2086492"
Lightning Riddim,Lake Haze,Force Of Nature,2014,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Force Of Nature - 05 Lightning Riddim.mp3,129.19921875,"-87.05589,57.54897,45.857964,29.176691,-5.5101686,22.629215,-4.589492,9.784957,-0.6131378,6.4206433,-1.1328014,7.3491173,2.2061996,8.510954,3.1849716,2.1551979,-1.1764873,7.284471,4.6611695,5.90043"
Tsunami Riddim,Lake Haze,Force Of Nature,2014,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Force Of Nature - 06 Tsunami Riddim.mp3,92.28515625,"-35.666252,56.665943,18.022099,13.611665,13.770335,15.932066,3.8058772,8.560779,2.5713503,4.4015565,-1.278696,3.3161824,1.936061,8.0011835,3.651384,5.021898,-5.3388844,0.40897095,0.04549811,9.161753"
Late Night Trip,Lake Haze,Late Night Trip,2013,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Late Night Trip - 01 Late Night Trip.mp3,64.599609375,"-103.66653,115.82634,10.437175,19.488861,13.694815,14.9965925,5.7142954,6.535917,2.6474311,3.0789225,-2.3680456,-2.7184913,-3.9683492,-1.7528106,-4.1295667,2.219049,0.5939079,0.9091194,-3.2889938,-3.0518177"
Need For Speed,Lake Haze,Late Night Trip,2013,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Late Night Trip - 02 Need For Speed.mp3,129.19921875,"-32.487705,93.26023,3.9956305,13.401446,1.9657115,8.4657755,1.4491856,5.985199,-1.936827,2.1555483,-1.7203463,2.1807618,0.3521336,1.5773731,-2.0477726,5.438572,0.9251948,0.7923139,-0.4720973,5.491421"
Love In Lux,Lake Haze,Love In Lux + DJ Boring Remix,2017,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Love In Lux + DJ Boring Remix - 01 Love In Lux.mp3,161.4990234375,"-39.15771,85.61461,-21.197481,22.07274,-3.5305667,11.000477,-7.1203094,5.3087134,-8.654091,2.608927,-4.5284004,5.3475842,-1.8580365,6.3538513,-2.6763988,3.646731,-1.7918403,3.471755,-1.2848704,3.0364113"
Apollonia,Lake Haze,Love In Lux + DJ Boring Remix,2017,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Love In Lux + DJ Boring Remix - 02 Apollonia.mp3,129.19921875,"-70.627525,76.995766,18.84727,35.21737,4.546889,19.469357,-1.7774581,10.512267,-2.5487058,4.128396,-3.9733326,-0.6305307,-3.0448833,0.83860815,-0.67457616,3.2978752,-3.425784,-0.56620026,-6.250075,-1.7546546"
Love In Lux (DJ Boring Remix),Lake Haze,Love In Lux + DJ Boring Remix,2017,,Unknown to the Unknown,/mnt/d/UTTU/Lake Haze/Lake Haze - Love In Lux + DJ Boring Remix - 03 Love In Lux (DJ Boring Remix).mp3,129.19921875,"-85.06843,67.47199,28.370895,7.931452,-3.3736727,12.466792,7.3452277,13.407287,-6.2766824,0.051092785,-4.0302052,8.690738,1.668871,7.1898384,-0.28126413,2.5517666,-4.6722927,0.736684,-0.98613393,0.49292177"
It's Ours,Lauren Flax,Dance Trax Vol.16 + Jimmy Edgar Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Lauren Flax/Lauren Flax - Dance Trax Vol.16 + Jimmy Edgar Remix - 01 It's Ours.mp3,123.046875,"-120.50439,66.90157,7.5055037,22.035244,3.7277539,13.269332,4.66749,10.609699,0.6137131,8.575575,2.0222726,4.755209,-0.58161646,2.4942288,-0.78780395,2.4457932,-2.4930453,-0.023748692,-3.4185882,1.5599282"
It's Ours (Jimmy Edgar Remix),Lauren Flax,Dance Trax Vol.16 + Jimmy Edgar Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Lauren Flax/Lauren Flax - Dance Trax Vol.16 + Jimmy Edgar Remix - 02 It's Ours (Jimmy Edgar Remix).mp3,129.19921875,"-186.50595,100.30137,27.541376,25.108438,21.184761,16.844648,2.7173052,6.148434,1.7446293,7.4495697,4.9918356,9.624344,1.4374337,0.62389594,-0.49572292,4.645259,1.0833938,4.260906,4.3098593,3.7397547"
Your Mom Likes Flange,Lauren Flax,Dance Trax Vol.16 + Jimmy Edgar Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Lauren Flax/Lauren Flax - Dance Trax Vol.16 + Jimmy Edgar Remix - 03 Your Mom Likes Flange.mp3,123.046875,"-103.9567,42.139294,19.363775,24.165867,10.4558735,19.843473,6.209488,12.2277565,1.7064201,8.584755,0.5998611,6.449374,2.2508562,4.5830984,3.5687723,3.9598258,-3.8301427,0.15845099,0.35767883,4.6717834"
Acid Ghetto,Lauren Flax,Dance Trax Vol.16 + Jimmy Edgar Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Lauren Flax/Lauren Flax - Dance Trax Vol.16 + Jimmy Edgar Remix - 04 Acid Ghetto.mp3,129.19921875,"-113.69872,89.64779,22.992588,15.481785,5.0946374,14.237873,7.1457276,11.848648,5.5895743,10.346233,6.1037526,7.693516,4.055208,6.1397357,1.9097677,4.3571887,-1.1587478,-0.5298119,-4.835701,-4.0391884"
Sequenc_tial Discord,Lauren Flax,Dance Trax Vol.16 + Jimmy Edgar Remix,2018,,Unknown to the Unknown,/mnt/d/UTTU/Lauren Flax/Lauren Flax - Dance Trax Vol.16 + Jimmy Edgar Remix - 05 Sequenc_tial Discord.mp3,129.19921875,"-165.4865,54.3118,34.41706,20.612494,10.478603,13.4931555,1.7602783,7.0704784,-3.239869,1.3557839,-4.7866044,-0.38669413,-1.5038041,1.8387653,-1.9664521,1.5250058,-2.5034082,0.16289794,-1.8871411,4.8835454"
Immensity Of Cosmic Space,Legowelt,Immensity Of Cosmic Space,2015,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Immensity Of Cosmic Space - 01 Immensity Of Cosmic Space.mp3,135.99917763157896,"-105.34526,87.15997,16.406853,15.850391,0.6812652,25.916958,-2.8271875,25.606722,2.3474052,19.030592,0.4517292,13.656004,4.555873,12.893287,7.4869514,8.504837,2.462404,7.5293727,4.0136147,5.1604624"
Palm Trees In The Rain,Legowelt,Immensity Of Cosmic Space,2015,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Immensity Of Cosmic Space - 02 Palm Trees In The Rain.mp3,129.19921875,"-65.76234,84.0062,-42.147404,32.435005,-0.13805334,26.95745,-0.055300985,25.607584,7.134404,18.197607,8.884586,14.439315,8.666837,8.745463,9.273756,11.722753,3.5429835,5.1227703,2.6642318,1.8563727"
Lumeria,Legowelt,Immensity Of Cosmic Space,2015,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Immensity Of Cosmic Space - 03 Lumeria.mp3,69.83741554054055,"-72.800766,100.47067,-8.760893,42.361446,-17.100056,28.135984,1.7536428,17.705648,3.0949187,9.03657,3.6859467,11.088855,7.4672823,7.295592,2.1649606,8.673126,2.3802927,5.6060934,-1.0678921,1.5704705"
Phase 5,Legowelt,Immensity Of Cosmic Space,2015,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Immensity Of Cosmic Space - 04 Phase 5.mp3,129.19921875,"-51.958748,104.53432,-34.134598,32.396053,7.206321,18.448217,-1.5324097,17.25409,-1.3096917,11.360989,2.7064817,5.2785583,-3.56322,0.7875221,-3.8045328,-0.74269235,-5.1420584,0.93369776,-4.525399,-1.5703738"
Institute of the Overmind,Legowelt,Institute of the Overmind (Free Download),2016,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Institute of the Overmind (Free Download) - 01 Institute of the Overmind.mp3,123.046875,"-91.5324,101.58385,-19.316439,25.461767,-18.31111,26.174269,-7.9109187,7.0907683,-3.8761702,-1.9710053,0.2771029,-4.455532,0.49150813,4.10064,-1.4756918,6.9397535,0.34212035,3.6894538,2.9131315,5.5023465"
Institute of the Overmind (Photonz Remix),Legowelt,Institute of the Overmind (Free Download),2016,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Institute of the Overmind (Free Download) - 02 Institute of the Overmind (Photonz Remix).mp3,83.35433467741936,"-109.05939,68.05089,16.036562,27.233164,3.7823737,23.647314,6.9998045,18.00072,5.681137,8.552345,5.014227,5.80598,1.927161,6.9242573,1.2772957,6.545106,3.0637696,6.1866717,4.4199696,6.3935018"
Sampling Winter,Legowelt,Sampling Winter,2019,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Sampling Winter - 01 Sampling Winter.mp3,123.046875,"-80.97664,129.09848,-20.29219,58.408398,6.0601716,14.58841,13.380015,0.545026,3.948393,7.145697,1.9645665,7.274145,5.1283755,7.0613685,3.2253616,8.853427,5.088267,8.830688,5.2160335,4.5458016"
Beach Oceano,Legowelt,Sampling Winter,2019,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Sampling Winter - 02 Beach Oceano.mp3,117.45383522727273,"-76.46452,125.942696,8.6736765,34.762993,2.9101722,23.12204,2.853402,12.630624,4.61036,10.32111,0.9894607,5.523464,2.039592,2.2113113,1.6343534,0.16257302,-3.3704205,3.7823966,5.6227016,4.1375465"
Stargazing,Legowelt,Stargazing EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Stargazing EP - 01 Stargazing.mp3,99.38401442307692,"-63.354156,113.509346,-18.802473,22.605215,4.5046477,9.683948,-3.7036796,10.383074,-0.84434325,3.134854,0.009850498,2.0246654,-0.56529444,0.94988114,-0.8229292,4.6961856,-1.0290112,2.9173265,-0.61447257,0.80505776"
Visions In My Mind,Legowelt,Stargazing EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Stargazing EP - 02 Visions In My Mind.mp3,117.45383522727273,"-78.710686,135.57866,-24.106934,32.298237,11.292325,14.743309,-1.8432244,11.576786,-0.80136585,11.813657,2.010021,5.308696,-0.031092294,1.5330082,-0.71189445,3.31138,1.4538692,3.5582423,2.0601678,2.107297"
Wayfaring Stranger,Legowelt,Stargazing EP,2014,,Unknown to the Unknown,/mnt/d/UTTU/Legowelt/Legowelt - Stargazing EP - 03 Wayfaring Stranger.mp3,123.046875,"-50.341816,104.14946,-32.19055,38.330547,6.3823843,7.723947,5.9017315,20.075356,-1.711295,12.260146,0.6602765,8.577449,4.931408,8.150686,6.699629,5.249877,8.347035,3.4134464,-2.810293,9.356295"
Shelter,Lis Sarroca,Shelter EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Lis Sarroca/Lis Sarroca - Shelter EP - 01 Shelter.mp3,129.19921875,"-74.030106,38.76047,26.109848,10.487116,5.999332,14.354745,6.674018,7.270937,0.83110934,3.7496428,-1.7357213,3.119114,-6.4139166,-3.013981,-4.870288,-0.24646711,-4.6007915,-0.2493496,-2.4212232,-1.5924826"
Moody Wax,Lis Sarroca,Shelter EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Lis Sarroca/Lis Sarroca - Shelter EP - 02 Moody Wax.mp3,129.19921875,"-40.934723,22.892975,40.075684,24.028252,3.7519958,18.123085,-4.0133963,8.672321,-4.8852367,2.6443493,-6.269651,1.7558998,-3.0840845,3.8679578,0.57417005,5.5668464,-0.5513563,4.4061017,-0.23751153,2.115233"
Saved By The Bell,Lis Sarroca,Shelter EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Lis Sarroca/Lis Sarroca - Shelter EP - 03 Saved By The Bell.mp3,99.38401442307692,"-72.0708,55.191628,48.2559,12.663239,7.22089,9.1760845,-4.322716,-0.63481563,-13.390807,-3.0629737,-12.326906,-0.4799497,-5.4884067,-0.8292058,0.46689075,3.7997172,-0.1483098,5.599239,2.2976928,4.0555124"
Wavve,Lis Sarroca,Shelter EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Lis Sarroca/Lis Sarroca - Shelter EP - 04 Wavve.mp3,135.99917763157896,"-121.752625,28.450533,46.02325,29.237633,17.352158,17.427006,8.99368,1.3751757,-0.8197352,-1.4261632,-3.006894,-1.0976624,-3.8605762,1.7506306,-3.5318964,2.6905148,-5.1020107,0.15984881,-2.7172654,-2.1095335"
Deepcore,Locklead,Deepcore EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Locklead/Locklead - Deepcore EP - 01 Deepcore.mp3,129.19921875,"-164.92545,78.91876,15.418794,42.6553,8.167695,29.2971,8.377488,14.617212,5.595486,8.58869,3.8272626,4.845578,0.7134543,2.343641,0.30099356,2.7252707,-1.4123038,0.5781071,-1.5669374,0.66262"
Diversity,Locklead,Deepcore EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Locklead/Locklead - Deepcore EP - 02 Diversity.mp3,129.19921875,"-133.36868,26.084202,-6.215589,5.520628,-3.2181587,11.863124,7.158201,14.152228,4.3254375,7.907497,3.7241893,8.259494,2.703305,7.7257085,2.7897344,8.776929,2.8497014,4.120254,0.05545243,3.3106723"
Take One,Locklead,Deepcore EP,2015,,Unknown to the Unknown,/mnt/d/UTTU/Locklead/Locklead - Deepcore EP - 03 Take One.mp3,67.99958881578948,"-176.19955,75.70747,8.061277,21.216587,4.533782,15.078547,-4.4669127,-0.60529965,9.479885,16.10158,1.7179028,-2.4557383,0.3251419,4.3484745,-3.5510101,-6.395133,-12.966935,-12.07018,-9.847535,-0.852557"
Drown In Ur Love,"Lords Of Midnite, Legowelt",Drown In Ur Love EP,2014,,Unknown to the Unknown,"/mnt/d/UTTU/Lords Of Midnite, Legowelt/Lords Of Midnite, Legowelt - Drown In Ur Love EP - 01 Drown In Ur Love.mp3",123.046875,"-53.639404,81.17603,-17.480442,39.442543,9.114176,36.708183,0.9750852,12.314296,-8.801592,8.709202,2.5415823,9.730125,-0.07742202,8.900495,-1.5667733,3.343473,-5.046247,-0.3634407,-4.241161,7.470442"
Skyscapers Of Ur Mind,"Lords Of Midnite, Legowelt",Drown In Ur Love EP,2014,,Unknown to the Unknown,"/mnt/d/UTTU/Lords Of Midnite, Legowelt/Lords Of Midnite, Legowelt - Drown In Ur Love EP - 02 Skyscapers Of Ur Mind.mp3",123.046875,"-47.250256,91.48304,-28.481968,38.937496,1.8613217,18.688963,-4.627679,17.155275,-2.930082,6.752811,-0.9929592,7.0036445,-2.9606314,3.4965498,-2.1019263,3.931853,-6.351563,-2.8156786,-2.2486207,5.8349023"
We Gonna Ride Tonight,"Lords Of Midnite, Legowelt",Drown In Ur Love EP,2014,,Unknown to the Unknown,"/mnt/d/UTTU/Lords Of Midnite, Legowelt/Lords Of Midnite, Legowelt - Drown In Ur Love EP - 03 We Gonna Ride Tonight.mp3",99.38401442307692,"-72.76037,88.36412,-12.596206,55.548767,11.545937,14.530449,-0.41033942,6.9191766,-0.31251138,4.3392367,-1.7905133,-0.56805855,-2.3821883,1.4656676,1.0086845,0.164975,1.7954758,5.2362027,4.852215,5.019298"
Mister Right Now,Luca Lozano,Mister Right Now + DJ Fett Burger Remix,2014,,Unknown to the Unknown,/mnt/d/UTTU/Luca Lozano/Luca Lozano - Mister Right Now + DJ Fett Burger Remix - 01 Mister Right Now.mp3,123.046875,"-121.09235,53.1315,9.974425,31.788067,21.395756,31.256092,12.92751,16.759794,8.910247,18.59529,6.382303,12.501134,7.004336,10.638382,6.47541,9.352484,5.1800103,5.203186,2.7731502,3.7183263"
Come With Me,Luca Lozano,Mister Right Now + DJ Fett Burger Remix,2014,,Unknown to the Unknown,/mnt/d/UTTU/Luca Lozano/Luca Lozano - Mister Right Now + DJ Fett Burger Remix - 02 Come With Me.mp3,123.046875,"-103.06306,74.40155,26.185022,52.75683,13.775719,21.434662,3.0698802,7.735303,3.1652527,4.427279,0.9934732,4.254938,2.1119795,4.9026036,5.1502724,7.6573653,2.9698946,7.4566016,-0.36209106,9.91252"
The Afterworld,Luca Lozano,Mister Right Now + DJ Fett Burger Remix,2014,,Unknown to the Unknown,/mnt/d/UTTU/Luca Lozano/Luca Lozano - Mister Right Now + DJ Fett Burger Remix - 03 The Afterworld.mp3,123.046875,"-87.19008,48.96266,-2.756838,16.777245,8.227841,15.485843,-0.0392223,7.10301,6.555343,9.922756,0.42080742,5.385734,0.75597394,3.2884808,-4.551129,3.0308506,-1.227006,3.6415486,0.2631818,5.003348"
The Afterworld (DJ Fett Burgers Orgonitt Meme Deep Mix),Luca Lozano,Mister Right Now + DJ Fett Burger Remix,2014,,Unknown to the Unknown,/mnt/d/UTTU/Luca Lozano/Luca Lozano - Mister Right Now + DJ Fett Burger Remix - 04 The Afterworld (DJ Fett Burgers Orgonitt Meme Deep Mix).mp3,123.046875,"-66.19225,75.00658,-0.08792999,29.824179,-8.16979,11.758969,-5.8164406,10.554158,-0.07527251,7.0859275,-0.684979,-0.6293912,-4.9916053,-1.6293097,-3.7727313,-0.95630765,-5.295962,0.6669928,-2.2165346,1.952016"
Raveshaped Drums Demo 1,Lucretio (The Analogue Cops),Raveshaped Drums (Sample Pack),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lucretio (The Analogue Cops)/Lucretio (The Analogue Cops) - Raveshaped Drums (Sample Pack) - 01 Raveshaped Drums Demo 1.mp3,161.4990234375,"-111.528275,61.031277,7.5043716,17.619978,4.4129786,18.014948,9.129126,12.6631975,2.8323357,10.841874,-1.653909,-0.6798985,-1.805435,3.1750731,-0.8104426,12.220835,2.5160003,1.0782056,-8.282796,0.74134916"
Raveshaped Drums Demo 2,Lucretio (The Analogue Cops),Raveshaped Drums (Sample Pack),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lucretio (The Analogue Cops)/Lucretio (The Analogue Cops) - Raveshaped Drums (Sample Pack) - 02 Raveshaped Drums Demo 2.mp3,112.34714673913044,"-71.116066,58.56916,-14.569477,8.882634,-6.8540134,-1.7025806,-0.870166,4.920427,-2.1330488,0.31854367,3.4286258,-2.8920138,-5.219644,6.3440614,-1.3976488,3.0069592,-0.37896276,3.348501,-0.15332146,-0.6744999"
Raveshaped Drums Demo 3,Lucretio (The Analogue Cops),Raveshaped Drums (Sample Pack),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lucretio (The Analogue Cops)/Lucretio (The Analogue Cops) - Raveshaped Drums (Sample Pack) - 03 Raveshaped Drums Demo 3.mp3,143.5546875,"-116.95532,63.976086,-2.9185374,25.882387,0.5644394,13.048864,1.3166318,9.3962965,-0.6562998,5.5755925,0.37981027,4.0535293,-0.42064786,4.152638,-1.9066019,0.7712045,-3.10653,1.1006582,-2.5089924,1.1784292"
Raveshaped Drums Demo 4,Lucretio (The Analogue Cops),Raveshaped Drums (Sample Pack),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lucretio (The Analogue Cops)/Lucretio (The Analogue Cops) - Raveshaped Drums (Sample Pack) - 04 Raveshaped Drums Demo 4.mp3,129.19921875,"-186.42729,109.696,16.343977,27.927519,10.3641205,22.801117,5.765825,12.222938,3.1173663,5.7699623,1.4132617,1.8344657,-5.8087153,-0.21438602,-0.5039264,3.849358,0.17208421,1.8608046,1.6702737,4.061648"
Raveshaped Drums Demo 5,Lucretio (The Analogue Cops),Raveshaped Drums (Sample Pack),2022,,Unknown to the Unknown,/mnt/d/UTTU/Lucretio (The Analogue Cops)/Lucretio (The Analogue Cops) - Raveshaped Drums (Sample Pack) - 05 Raveshaped Drums Demo 5.mp3,161.4990234375,"-142.46152,85.28321,26.891079,27.956926,12.206496,9.605221,0.92032146,7.1258326,0.77869356,8.844355,4.6182714,7.412949,2.7431784,5.8297,1.3863494,2.1338468,-2.7396173,2.6287315,-2.3874674,0.5757188"
Xhale,Ludwig A.F.,Xhale EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Ludwig A.F/Ludwig A.F. - Xhale EP - 01 Xhale.mp3,123.046875,"-56.51624,92.52991,13.263035,25.301891,-0.57712156,7.667317,-7.413348,5.40911,-5.4272027,3.389827,-8.565351,5.4590335,-4.9784403,4.459949,-1.761768,2.4206018,-6.1326213,0.89829886,-3.4397027,2.2999518"
Shiitake,Ludwig A.F.,Xhale EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Ludwig A.F/Ludwig A.F. - Xhale EP - 02 Shiitake.mp3,129.19921875,"-111.983765,86.78172,-0.17278071,10.503392,-7.397481,19.403618,-10.326128,4.5079803,-12.951712,1.2696935,-4.9667306,2.9842072,-4.7202654,-2.0752637,-4.2916665,10.2874775,-0.17077945,0.4945388,-2.3324838,5.047621"
Firefly,Ludwig A.F.,Xhale EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Ludwig A.F/Ludwig A.F. - Xhale EP - 03 Firefly.mp3,123.046875,"-145.90213,168.88292,19.767801,29.232498,1.901217,2.1490545,3.1765933,8.692539,-1.3688494,-4.7235613,-6.0144897,3.3271725,-1.4321376,1.6596774,-2.7852025,2.242953,1.2210448,6.1596246,-1.1096501,-3.6339068"
Omega Quest,Ludwig A.F.,Xhale EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Ludwig A.F/Ludwig A.F. - Xhale EP - 04 Omega Quest.mp3,103.359375,"-185.2625,176.40897,20.509909,2.2129836,-13.343245,-3.7336082,-14.961365,-3.25947,-9.421662,-3.9500086,-10.303833,-5.559873,-4.3682146,-1.1283488,-5.0622473,-7.038919,-5.4895077,-4.236752,-8.705268,1.9037915"
GM Baby,M4A4,Charisma EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Charisma EP - 01 GM Baby.mp3,135.99917763157896,"-220.0958,46.061356,4.373237,17.70947,0.24002437,7.1935573,0.25456637,0.94687104,-1.2589858,5.0200515,1.0940248,4.5638614,0.9441282,4.749147,1.3848935,7.4513445,5.3915668,7.1224833,5.3724976,6.9514284"
Seduction,M4A4,Charisma EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Charisma EP - 02 Seduction.mp3,89.10290948275862,"-183.49529,47.071117,20.543941,23.572268,7.013074,18.321016,12.939096,11.522798,2.395133,12.332829,5.2479224,10.3438635,6.397451,6.1652374,7.213078,12.45415,4.682453,7.978134,5.695814,7.373242"
Hot Hausin',M4A4,Charisma EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Charisma EP - 03 Hot Hausin'.mp3,66.25600961538461,"-216.03581,46.02437,30.359257,27.94854,14.289333,23.79349,11.232907,16.186184,1.3875992,4.1995983,3.8982928,5.259577,4.552438,8.71964,12.983568,15.057097,10.12893,6.9090424,7.0048256,8.555661"
Deepness,M4A4,Charisma EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Charisma EP - 04 Deepness.mp3,135.99917763157896,"-212.50345,63.96178,51.846573,26.958317,1.3346289,18.369682,-2.5929184,5.79939,-11.3357725,-7.207031,-10.633275,-6.3458314,-10.69896,-3.022393,-5.111631,-2.1387186,-5.7187657,-3.9686167,-5.76773,3.4555113"
Vision Leaks,M4A4,Vision Leaks,2023,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Vision Leaks - 01 Vision Leaks.mp3,92.28515625,"-158.5727,57.753872,27.825516,13.580701,18.359695,21.951159,13.257542,11.340464,6.0673776,11.340902,3.341507,11.232445,5.066517,8.164806,2.1933727,6.4339905,0.9498724,7.5956826,4.478627,7.741369"
Kiss Your Skin,M4A4,Vision Leaks,2023,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Vision Leaks - 02 Kiss Your Skin.mp3,92.28515625,"-82.866516,60.427254,-35.958447,18.25506,-8.411626,21.848324,22.64373,18.648407,10.1992,7.0825024,-2.5635123,10.347312,7.551113,15.109317,10.910854,7.703695,0.4609791,4.93821,0.31920847,-4.0417223"
Now I Feel It,M4A4,Vision Leaks,2023,,Unknown to the Unknown,/mnt/d/UTTU/M4A4/M4A4 - Vision Leaks - 03 Now I Feel It.mp3,143.5546875,"-74.04649,32.67971,-33.623287,17.94647,2.950782,25.01812,16.150944,18.943335,6.5125456,10.999458,1.6552603,8.212336,7.412517,12.312404,9.534787,12.7518835,6.5319786,11.745139,6.78505,8.877817"
Forked Tongue,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna/machìna - Trusted EP - 01 Forked Tongue.mp3,129.19921875,"-89.30437,101.97985,26.184458,28.831102,6.4125457,20.743359,4.477825,8.782571,-3.808413,2.8290124,-1.7168266,6.1177945,-2.0075774,0.6688345,-4.923729,2.33856,0.13012865,3.8905218,-2.8041236,2.350594"
REM-S,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna/machìna - Trusted EP - 02 REM-S.mp3,129.19921875,"-52.523804,97.448265,-18.405178,25.658092,-8.52607,8.545397,-8.101631,-0.6931901,-9.739845,-0.6604442,-5.7610946,-0.06656927,-6.09996,-5.404666,-8.304068,-3.5782166,-7.969529,-2.9736602,-5.3247504,0.99875015"
Trusted,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna/machìna - Trusted EP - 03 Trusted.mp3,143.5546875,"-175.56502,132.34154,22.158342,13.16701,3.8115344,8.504737,5.9784307,7.5610466,-0.29524583,4.9056263,0.14188275,-3.4502566,-2.3409295,-0.38540798,-2.6601222,2.3239737,-0.708835,0.52358335,1.2235489,4.415454"
Ensemble Room,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna/machìna - Trusted EP - 04 Ensemble Room.mp3,117.45383522727273,"-151.92029,104.12269,19.493528,18.652737,22.576254,8.292456,-5.4915886,5.883672,1.3613353,4.389323,-8.81649,-0.066060476,-7.0765505,0.08807952,-9.961631,-0.63511807,-7.258455,-0.07001571,-4.1779127,-0.06588968"
Forked Tongue,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna - Trusted EP/machìna - Trusted EP - 01 Forked Tongue.mp3,129.19921875,"-89.30437,101.97985,26.184458,28.831102,6.4125457,20.743359,4.477825,8.782571,-3.808413,2.8290124,-1.7168266,6.1177945,-2.0075774,0.6688345,-4.923729,2.33856,0.13012865,3.8905218,-2.8041236,2.350594"
REM-S,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna - Trusted EP/machìna - Trusted EP - 02 REM-S.mp3,129.19921875,"-52.523804,97.448265,-18.405178,25.658092,-8.52607,8.545397,-8.101631,-0.6931901,-9.739845,-0.6604442,-5.7610946,-0.06656927,-6.09996,-5.404666,-8.304068,-3.5782166,-7.969529,-2.9736602,-5.3247504,0.99875015"
Trusted,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna - Trusted EP/machìna - Trusted EP - 03 Trusted.mp3,143.5546875,"-175.56502,132.34154,22.158342,13.16701,3.8115344,8.504737,5.9784307,7.5610466,-0.29524583,4.9056263,0.14188275,-3.4502566,-2.3409295,-0.38540798,-2.6601222,2.3239737,-0.708835,0.52358335,1.2235489,4.415454"
Ensemble Room,machìna,Trusted EP,2022,,Unknown to the Unknown,/mnt/d/UTTU/machìna - Trusted EP/machìna - Trusted EP - 04 Ensemble Room.mp3,117.45383522727273,"-151.92029,104.12269,19.493528,18.652737,22.576254,8.292456,-5.4915886,5.883672,1.3613353,4.389323,-8.81649,-0.066060476,-7.0765505,0.08807952,-9.961631,-0.63511807,-7.258455,-0.07001571,-4.1779127,-0.06588968"
Automatik,Mak & Pasteman,Automatik / Ringer,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman/Mak & Pasteman - Automatik - Ringer - 01 Automatik.mp3,129.19921875,"-125.547554,97.00231,1.0369842,33.958305,7.087068,29.12191,5.7337084,10.756652,-0.04959533,8.218911,2.6188118,7.4560585,1.6378856,5.323558,3.8472104,6.913872,-0.48926336,3.9178975,1.5339276,6.9255877"
Ringer,Mak & Pasteman,Automatik / Ringer,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman/Mak & Pasteman - Automatik - Ringer - 02 Ringer.mp3,123.046875,"-67.87218,57.09017,-13.736406,25.903149,14.428878,23.85502,12.823905,18.401354,9.938985,9.399204,4.1502542,7.6940613,2.1981215,4.984058,1.729276,4.7964826,-0.22380087,3.9747357,-2.0698047,1.5855426"
Percwerc,Mak & Pasteman,Dance Trax Vol 1,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman/Mak & Pasteman - Dance Trax Vol 1 - 01 Percwerc.mp3,83.35433467741936,"-64.83349,61.476143,-19.665443,45.784702,11.060296,14.973644,5.801379,14.596615,4.330558,14.1171875,4.862827,5.330497,1.6182921,6.678228,5.425765,6.0527396,-3.371722,0.43962583,1.1170243,4.1600375"
T2000,Mak & Pasteman,Dance Trax Vol 1,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman/Mak & Pasteman - Dance Trax Vol 1 - 02 T2000.mp3,129.19921875,"-78.33965,77.70143,13.730364,33.466465,7.8136973,20.964693,3.7981555,9.42564,3.2481277,6.7547383,2.6593864,5.395064,-5.191656,-0.9551138,-5.155654,3.1144965,-1.0672423,4.0349917,-3.366901,2.7490222"
Automatik,Mak & Pasteman,Automatik / Ringer,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman - Automatik - Ringer/Mak & Pasteman - Automatik - Ringer - 01 Automatik.mp3,129.19921875,"-125.547554,97.00231,1.0369842,33.958305,7.087068,29.12191,5.7337084,10.756652,-0.04959533,8.218911,2.6188118,7.4560585,1.6378856,5.323558,3.8472104,6.913872,-0.48926336,3.9178975,1.5339276,6.9255877"
Ringer,Mak & Pasteman,Automatik / Ringer,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman - Automatik - Ringer/Mak & Pasteman - Automatik - Ringer - 02 Ringer.mp3,123.046875,"-67.87218,57.09017,-13.736406,25.903149,14.428878,23.85502,12.823905,18.401354,9.938985,9.399204,4.1502542,7.6940613,2.1981215,4.984058,1.729276,4.7964826,-0.22380087,3.9747357,-2.0698047,1.5855426"
Percwerc,Mak & Pasteman,Dance Trax Vol 1,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman - Dance Trax Vol 1/Mak & Pasteman - Dance Trax Vol 1 - 01 Percwerc.mp3,83.35433467741936,"-64.83349,61.476143,-19.665443,45.784702,11.060296,14.973644,5.801379,14.596615,4.330558,14.1171875,4.862827,5.330497,1.6182921,6.678228,5.425765,6.0527396,-3.371722,0.43962583,1.1170243,4.1600375"
T2000,Mak & Pasteman,Dance Trax Vol 1,2016,,Unknown to the Unknown,/mnt/d/UTTU/Mak & Pasteman - Dance Trax Vol 1/Mak & Pasteman - Dance Trax Vol 1 - 02 T2000.mp3,129.19921875,"-78.33965,77.70143,13.730364,33.466465,7.8136973,20.964693,3.7981555,9.42564,3.2481277,6.7547383,2.6593864,5.395064,-5.191656,-0.9551138,-5.155654,3.1144965,-1.0672423,4.0349917,-3.366901,2.7490222"
Side Hustle,Mani Festo,Dance Trax Vol. 57,2023,,Unknown to the Unknown,/mnt/d/UTTU/Mani Festo/Mani Festo - Dance Trax Vol. 57 - 01 Side Hustle.mp3,66.25600961538461,"-82.54677,66.2204,-3.341291,8.110968,-11.817673,9.396332,0.0009474258,6.892815,2.3237622,12.542232,4.3817854,7.952551,6.8909645,9.427878,4.7887497,8.097945,5.245143,5.093703,3.870228,5.228837"
Signal,Mani Festo,Dance Trax Vol. 57,2023,,Unknown to the Unknown,/mnt/d/UTTU/Mani Festo/Mani Festo - Dance Trax Vol. 57 - 02 Signal.mp3,99.38401442307692,"-34.530434,62.065464,9.071035,25.19303,-7.7614226,7.9334745,-3.7824855,1.5207723,-1.3069066,4.203123,-5.5715013,1.0337546,-2.5780005,0.47003263,0.9539668,1.8936828,-2.1404035,3.1063983,-1.0132915,1.9096172"
Plunk,Mani Festo,Dance Trax Vol. 57,2023,,Unknown to the Unknown,/mnt/d/UTTU/Mani Festo/Mani Festo - Dance Trax Vol. 57 - 03 Plunk.mp3,143.5546875,"-122.72838,76.17998,30.615334,24.03275,6.616675,18.844355,8.358884,14.261446,9.019406,13.757742,6.36948,10.125268,8.856683,11.957541,6.2276917,9.233356,4.365902,6.78077,3.2033393,5.174314"
Fancy Dome,MAREAM,Fancy Dome EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/MAREAM/MAREAM - Fancy Dome EP - 01 Fancy Dome.mp3,143.5546875,"-41.978348,64.03975,11.348107,29.877174,9.111755,22.770943,7.366968,16.271727,4.4259424,10.879697,4.3805633,6.5107937,0.067298405,3.7571282,-0.3857025,5.224796,-0.8372082,3.1246295,-2.865972,0.46938"
Inunoyosa,MAREAM,Fancy Dome EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/MAREAM/MAREAM - Fancy Dome EP - 02 Inunoyosa.mp3,107.666015625,"-30.499163,89.5222,1.1154597,23.012205,6.9934125,15.186053,8.317228,9.839016,6.2935443,6.983344,2.9023154,5.325714,0.84825546,3.6794257,-0.2622029,3.6723518,1.7676272,3.3075435,-0.32920158,2.88328"
UAV Is Online,MAREAM,Fancy Dome EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/MAREAM/MAREAM - Fancy Dome EP - 03 UAV Is Online.mp3,143.5546875,"-59.04247,62.920067,3.079157,30.009485,3.3977227,19.29484,-1.694494,12.060551,2.63569,8.875187,3.3358839,7.4377933,-0.24770738,5.4765625,0.525816,5.675242,2.2341728,7.3689084,2.519514,5.7745414"
High Life,Max D,High Life + Willie Burns Remix,2014,,Unknown to the Unknown,/mnt/d/UTTU/Max D/Max D - High Life + Willie Burns Remix - 01 High Life.mp3,71.77734375,"-96.92093,80.790565,-3.0832245,48.02299,-12.839855,15.953298,-7.191432,3.8548455,-9.19931,-2.0559447,-4.21379,-2.37188,-2.2477329,4.890169,-2.098254,4.186465,3.7980552,4.3101044,-3.7162971,-5.5169573"
High Life - Willie Burns Remix,Max D,High Life + Willie Burns Remix,2014,,Unknown to the Unknown,/mnt/d/UTTU/Max D/Max D - High Life + Willie Burns Remix - 02 High Life - Willie Burns Remix.mp3,123.046875,"-139.91515,111.48826,2.0713365,31.476631,-12.870571,9.357845,-12.922478,-1.3737098,-13.447802,-3.9792569,-6.064578,-1.4319663,0.21800613,3.5886955,-1.3098637,4.8475714,5.3624063,7.1120934,1.6281877,1.2222884"
Moog Beat,Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 01 Moog Beat.mp3,123.046875,"-130.4044,85.03921,26.397224,28.48172,11.197086,15.233258,3.565851,9.129815,0.6607152,6.311334,-1.940944,2.057847,-1.0913821,2.1330283,-0.3752712,5.732927,-1.5974463,3.3172295,2.7643564,6.276808"
Moog Beat (DJ Boring Remix),Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 02 Moog Beat (DJ Boring Remix).mp3,123.046875,"-133.29272,73.661415,2.058996,15.63035,4.9380226,18.97436,4.1084695,10.327773,3.6814883,9.50071,0.58065414,4.5321393,2.3296356,4.255011,0.039430168,2.4337754,-2.4778125,6.865186,3.8385723,2.2642555"
Larry Beat,Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 03 Larry Beat.mp3,123.046875,"-110.4091,107.97779,-17.540941,16.603483,14.762249,19.620972,9.178171,14.422709,6.3522654,12.880029,5.088561,4.2592416,1.2394406,2.079607,0.3641206,1.9790485,-4.0142508,-2.0520248,-3.5456667,-0.16231577"
Tribal Layers,Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 04 Tribal Layers.mp3,129.19921875,"-105.922966,108.16091,7.1430516,25.255,2.6988673,11.787449,-4.3327584,2.8477077,-5.1119556,0.93223935,-6.448054,-4.848805,-7.277306,-1.6262299,-3.4097657,-1.9729284,-5.136761,-2.3773158,-6.651021,-3.621871"
Tribal Layers (Bontan Remix),Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 05 Tribal Layers (Bontan Remix).mp3,123.046875,"-92.93732,37.136894,23.549858,12.526796,2.9320886,9.365992,1.6494561,4.3346863,2.0045333,4.7476063,-1.4808143,1.0691723,-4.1509757,2.1139843,-4.367824,2.3234015,-1.9417553,-0.5449106,-3.2218165,0.7209352"
Moog Beat,Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé - Tribal Trax + DJ Boring & Bontan Remixes/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 01 Moog Beat.mp3,123.046875,"-130.4044,85.03921,26.397224,28.48172,11.197086,15.233258,3.565851,9.129815,0.6607152,6.311334,-1.940944,2.057847,-1.0913821,2.1330283,-0.3752712,5.732927,-1.5974463,3.3172295,2.7643564,6.276808"
Moog Beat (DJ Boring Remix),Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé - Tribal Trax + DJ Boring & Bontan Remixes/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 02 Moog Beat (DJ Boring Remix).mp3,123.046875,"-133.29272,73.661415,2.058996,15.63035,4.9380226,18.97436,4.1084695,10.327773,3.6814883,9.50071,0.58065414,4.5321393,2.3296356,4.255011,0.039430168,2.4337754,-2.4778125,6.865186,3.8385723,2.2642555"
Larry Beat,Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé - Tribal Trax + DJ Boring & Bontan Remixes/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 03 Larry Beat.mp3,123.046875,"-110.4091,107.97779,-17.540941,16.603483,14.762249,19.620972,9.178171,14.422709,6.3522654,12.880029,5.088561,4.2592416,1.2394406,2.079607,0.3641206,1.9790485,-4.0142508,-2.0520248,-3.5456667,-0.16231577"
Tribal Layers,Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé - Tribal Trax + DJ Boring & Bontan Remixes/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 04 Tribal Layers.mp3,129.19921875,"-105.922966,108.16091,7.1430516,25.255,2.6988673,11.787449,-4.3327584,2.8477077,-5.1119556,0.93223935,-6.448054,-4.848805,-7.277306,-1.6262299,-3.4097657,-1.9729284,-5.136761,-2.3773158,-6.651021,-3.621871"
Tribal Layers (Bontan Remix),Melé,Tribal Trax + DJ Boring & Bontan Remixes,2018,,Unknown to the Unknown,/mnt/d/UTTU/Melé - Tribal Trax + DJ Boring & Bontan Remixes/Melé - Tribal Trax + DJ Boring & Bontan Remixes - 05 Tribal Layers (Bontan Remix).mp3,123.046875,"-92.93732,37.136894,23.549858,12.526796,2.9320886,9.365992,1.6494561,4.3346863,2.0045333,4.7476063,-1.4808143,1.0691723,-4.1509757,2.1139843,-4.367824,2.3234015,-1.9417553,-0.5449106,-3.2218165,0.7209352"
Workout,Merimell,Workout + Soft Pink Truth & PALACE Remixes,2016,,Unknown to the Unknown,/mnt/d/UTTU/Merimell/Merimell - Workout + Soft Pink Truth & PALACE Remixes - 01 Workout.mp3,129.19921875,"-163.33626,78.15941,4.016357,25.136389,6.177043,15.034303,4.9718046,10.914399,4.0150003,6.7212195,4.1612315,8.210534,3.7258358,7.6768775,4.2976475,5.955432,-1.1394483,2.441496,-2.0072227,0.6537004"
Workout (PALACE Refix),Merimell,Workout + Soft Pink Truth & PALACE Remixes,2016,,Unknown to the Unknown,/mnt/d/UTTU/Merimell/Merimell - Workout + Soft Pink Truth & PALACE Remixes - 02 Workout (PALACE Refix).mp3,86.1328125,"-73.024895,69.33236,1.4109404,32.218815,-5.7599483,23.019432,-4.2124844,7.772506,2.8869927,5.2067924,-3.98103,5.0796175,-0.47022378,2.5928798,-0.021056596,0.91266453,-4.412043,3.5794897,-3.9063408,-0.28844544"
Getting Hot,Merimell,Workout + Soft Pink Truth & PALACE Remixes,2016,,Unknown to the Unknown,/mnt/d/UTTU/Merimell/Merimell - Workout + Soft Pink Truth & PALACE Remixes - 03 Getting Hot.mp3,129.19921875,"-121.845505,58.38145,3.2124717,16.158998,5.8785753,15.492814,13.57314,14.997682,5.250052,12.049934,6.5878167,3.7718182,2.7418842,5.4335675,1.6148287,6.5626245,-0.16178355,2.82564,-2.4133048,1.8961058"
Getting Hot (Soft Pink Truth Climate Change Mix),Merimell,Workout + Soft Pink Truth & PALACE Remixes,2016,,Unknown to the Unknown,/mnt/d/UTTU/Merimell/Merimell - Workout + Soft Pink Truth & PALACE Remixes - 04 Getting Hot (Soft Pink Truth Climate Change Mix).mp3,135.99917763157896,"-123.76164,94.60543,20.467966,24.306583,12.698004,19.94941,9.796233,14.188195,6.4590597,7.803037,2.4883525,3.9639711,0.659893,2.4113052,-0.42996678,2.2808387,-0.31692347,1.8937893,-4.784735,2.4280925"
Matrix Blaster,Metic,Matrix Blaster,2020,,Unknown to the Unknown,/mnt/d/UTTU/Metic/Metic - Matrix Blaster - 01 Matrix Blaster.mp3,143.5546875,"-102.11134,76.59575,-5.999643,27.844337,10.254816,28.194757,6.863672,19.163475,3.7683532,20.456114,6.9713287,16.655375,6.69605,10.55388,7.406227,5.5379143,4.602425,4.030492,2.95925,3.8925934"
Cyme,Metic,Matrix Blaster,2020,,Unknown to the Unknown,/mnt/d/UTTU/Metic/Metic - Matrix Blaster - 02 Cyme.mp3,129.19921875,"-145.1001,122.695625,-2.4659462,21.017374,1.6528419,7.519446,9.705948,-4.003148,-9.31464,-13.239923,10.152331,9.21549,-0.76665425,8.083806,5.4313,0.3117135,-3.5773606,-3.104885,-4.728836,1.6393344"
Phase Inv,Metic,Matrix Blaster,2020,,Unknown to the Unknown,/mnt/d/UTTU/Metic/Metic - Matrix Blaster - 03 Phase Inv.mp3,107.666015625,"-101.2457,142.6838,-26.16115,30.29452,4.9899516,4.652836,3.9036508,13.861749,6.038473,6.636111,0.5300119,3.9671044,-1.6909933,4.6919684,5.6419287,5.767554,4.2131686,7.320827,4.3074875,2.1298416"
Tape Birth,Metic,Matrix Blaster,2020,,Unknown to the Unknown,/mnt/d/UTTU/Metic/Metic - Matrix Blaster - 04 Tape Birth.mp3,117.45383522727273,"-146.88934,148.07004,-18.070402,9.61744,10.52838,12.221081,2.0788364,0.84551466,-0.31990397,-0.1981633,-5.552662,1.147459,-4.2999725,-5.2283387,-4.2814646,-1.9699537,-2.681963,-0.19238141,-2.2916334,0.07638514"
Give Em What They Want,Mija,Give Em What They Want + Shadow Child Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Mija/Mija - Give Em What They Want + Shadow Child Remix - 01 Give Em What They Want.mp3,123.046875,"-185.30399,115.926994,33.61275,28.48371,16.24098,13.570985,2.6129174,9.735917,-0.14931537,2.8365684,-1.4452341,2.1947117,-1.8342195,4.2787967,0.96388155,2.5429356,-0.7681994,3.0475945,-1.7378479,0.67528486"
Give Em What They Want (Shadow Child Remix),Mija,Give Em What They Want + Shadow Child Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Mija/Mija - Give Em What They Want + Shadow Child Remix - 02 Give Em What They Want (Shadow Child Remix).mp3,64.599609375,"-75.08699,42.7073,5.84653,20.958221,10.916454,26.142807,2.5817084,15.706834,5.961368,12.620435,-0.19564156,7.9764495,-1.8050921,6.3423,6.7182193,2.1459942,-3.2456946,4.123104,-1.579621,3.2202368"
Sweat It Out,Mija,Sweat It Out + Ludwig A.F. Röhrscheid Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Mija/Mija - Sweat It Out + Ludwig A.F. Röhrscheid Remix - 01 Sweat It Out.mp3,129.19921875,"-203.13644,95.25071,13.484048,19.084234,11.697626,13.463421,11.226035,10.793323,4.2029023,11.704138,2.0407803,4.150643,0.33315307,5.7016826,2.0344906,5.492326,1.2425305,3.9435766,1.5771435,3.7060313"
Mija - Sweat It Out (Ludwig A.F. Röhrscheid Onsen Dub),Mija,Sweat It Out + Ludwig A.F. Röhrscheid Remix,2019,,Unknown to the Unknown,/mnt/d/UTTU/Mija/Mija - Sweat It Out + Ludwig A.F. Röhrscheid Remix - 02 Mija - Sweat It Out (Ludwig A.F. Röhrscheid Onsen Dub).mp3,107.666015625,"-229.50711,121.3063,-0.42110795,27.5916,10.488597,14.095123,5.413528,13.118331,6.583637,5.4660163,-6.110072,6.0317364,2.4324968,0.5052079,1.0765387,4.505308,-0.63489413,-5.6825824,0.48877355,5.1916575"
Give Em What They Want,Mija,Give Em What They Want + Shadow Child Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Mija - Give Em What They Want + Shadow Child Remix/Mija - Give Em What They Want + Shadow Child Remix - 01 Give Em What They Want.mp3,123.046875,"-185.30399,115.926994,33.61275,28.48371,16.24098,13.570985,2.6129174,9.735917,-0.14931537,2.8365684,-1.4452341,2.1947117,-1.8342195,4.2787967,0.96388155,2.5429356,-0.7681994,3.0475945,-1.7378479,0.67528486"
Give Em What They Want (Shadow Child Remix),Mija,Give Em What They Want + Shadow Child Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Mija - Give Em What They Want + Shadow Child Remix/Mija - Give Em What They Want + Shadow Child Remix - 02 Give Em What They Want (Shadow Child Remix).mp3,64.599609375,"-75.08699,42.7073,5.84653,20.958221,10.916454,26.142807,2.5817084,15.706834,5.961368,12.620435,-0.19564156,7.9764495,-1.8050921,6.3423,6.7182193,2.1459942,-3.2456946,4.123104,-1.579621,3.2202368"
Labrini,Mista Men,UTTU EP,2012,,Unknown to the Unknown,/mnt/d/UTTU/Mista Men/Mista Men - UTTU EP - 01 Labrini.mp3,135.99917763157896,"-79.07244,75.93675,6.902134,25.937458,5.947133,13.914472,2.6495042,10.596142,-0.6490502,8.022594,-1.088261,4.477934,-1.7920629,0.7092853,-0.2429613,0.03044125,-2.2803757,1.8125886,-2.721834,0.47557482"
Forget U,Mista Men,UTTU EP,2012,,Unknown to the Unknown,/mnt/d/UTTU/Mista Men/Mista Men - UTTU EP - 02 Forget U.mp3,135.99917763157896,"-93.46229,33.717407,37.12506,23.2638,11.947556,21.343012,9.893548,15.468018,6.0811152,10.728238,-1.5194951,5.6362057,-0.34857777,2.7575011,0.49589702,1.362844,-1.8669112,2.741541,-3.8135219,0.21167009"
Hard Drive,Mista Men,UTTU EP,2012,,Unknown to the Unknown,/mnt/d/UTTU/Mista Men/Mista Men - UTTU EP - 03 Hard Drive.mp3,129.19921875,"-78.74102,45.93054,0.2450261,19.77961,-3.112298,8.692924,0.62752557,8.385117,1.5635862,7.394408,4.406535,8.321663,5.452545,7.161187,2.4505787,3.5129669,-4.223746,0.645745,0.580712,0.992528"
Labrini,Mista Men,UTTU EP,2012,,Unknown to the Unknown,/mnt/d/UTTU/Mista Men - UTTU EP/Mista Men - UTTU EP - 01 Labrini.mp3,135.99917763157896,"-79.07244,75.93675,6.902134,25.937458,5.947133,13.914472,2.6495042,10.596142,-0.6490502,8.022594,-1.088261,4.477934,-1.7920629,0.7092853,-0.2429613,0.03044125,-2.2803757,1.8125886,-2.721834,0.47557482"
Forget U,Mista Men,UTTU EP,2012,,Unknown to the Unknown,/mnt/d/UTTU/Mista Men - UTTU EP/Mista Men - UTTU EP - 02 Forget U.mp3,135.99917763157896,"-93.46229,33.717407,37.12506,23.2638,11.947556,21.343012,9.893548,15.468018,6.0811152,10.728238,-1.5194951,5.6362057,-0.34857777,2.7575011,0.49589702,1.362844,-1.8669112,2.741541,-3.8135219,0.21167009"
Hard Drive,Mista Men,UTTU EP,2012,,Unknown to the Unknown,/mnt/d/UTTU/Mista Men - UTTU EP/Mista Men - UTTU EP - 03 Hard Drive.mp3,129.19921875,"-78.74102,45.93054,0.2450261,19.77961,-3.112298,8.692924,0.62752557,8.385117,1.5635862,7.394408,4.406535,8.321663,5.452545,7.161187,2.4505787,3.5129669,-4.223746,0.645745,0.580712,0.992528"
Robotic Manoeuvres,Mod Man,Robotic Manoeuvres,2020,,Unknown to the Unknown,/mnt/d/UTTU/Mod Man/Mod Man - Robotic Manoeuvres - 01 Robotic Manoeuvres.mp3,123.046875,"-75.66105,76.54245,16.435059,15.919037,12.517557,16.898787,7.908037,15.116401,-1.0212318,12.796117,-0.0038510668,7.4105005,0.62796575,6.430428,1.3728485,3.6854157,0.04116684,3.4872613,-1.1971562,3.2547028"
Reload,Mod Man,Robotic Manoeuvres,2020,,Unknown to the Unknown,/mnt/d/UTTU/Mod Man/Mod Man - Robotic Manoeuvres - 02 Reload.mp3,123.046875,"-86.26053,67.56981,16.27887,29.48907,5.910896,21.91572,9.613963,16.44137,6.1401424,9.57457,2.698368,8.766344,2.8989546,7.381439,2.6555955,3.8575299,-1.7045572,2.597431,-2.0776217,1.9993299"
FOLD,Mod Man,Robotic Manoeuvres,2020,,Unknown to the Unknown,/mnt/d/UTTU/Mod Man/Mod Man - Robotic Manoeuvres - 03 FOLD.mp3,99.38401442307692,"-121.93939,59.76351,15.717721,24.162586,18.695803,16.674404,7.579478,13.526635,7.2937865,11.614264,5.410716,8.425966,4.654609,8.553909,1.4490073,5.299486,3.4769037,8.031761,0.95047414,4.351163"
Bolt,Mod Man,Waveshaper EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Mod Man/Mod Man - Waveshaper EP - 01 Bolt.mp3,123.046875,"-182.4509,60.475445,19.401827,17.888727,8.303015,11.51625,3.9289978,8.49328,2.9897695,5.5854173,0.07521465,5.6993475,2.5948148,4.6418123,1.4403824,4.126438,1.325618,3.8407161,1.9028965,5.4252915"
Waveshaper,Mod Man,Waveshaper EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Mod Man/Mod Man - Waveshaper EP - 02 Waveshaper.mp3,123.046875,"-157.11815,83.65429,17.287354,14.801696,3.4952755,12.491957,1.3741829,7.151942,-0.6852875,4.4219084,-2.3918033,3.727459,1.8446871,6.2081738,0.9867467,3.7536008,0.41327488,4.8001175,0.994284,2.1038017"
Drill,Mod Man,Waveshaper EP,2020,,Unknown to the Unknown,/mnt/d/UTTU/Mod Man/Mod Man - Waveshaper EP - 03 Drill.mp3,123.046875,"-159.31439,81.75591,7.316506,13.958439,3.1395102,9.602228,1.1648718,9.755417,-1.0866816,5.9216866,-1.2219266,6.271782,0.12829816,3.9210014,-2.114723,1.7095497,-0.6633462,3.1346588,-1.9370445,2.6688137"
Springtime,Mumdance,Springtime,2014,,Unknown to the Unknown,/mnt/d/UTTU/Mumdance/Mumdance - Springtime - 01 Springtime.mp3,67.99958881578948,"-140.6807,63.33322,-6.0522003,15.725598,4.8911157,11.913464,-0.16599095,6.224342,-3.6446576,-2.0643916,-8.50381,-0.5156805,0.14944872,7.503097,4.4512825,7.690701,1.2502701,2.5670784,-2.4519703,1.2165995"
It's Peak,Mumdance,Springtime,2014,,Unknown to the Unknown,/mnt/d/UTTU/Mumdance/Mumdance - Springtime - 02 It's Peak.mp3,123.046875,"-75.518364,45.090866,-16.63846,4.7525783,-0.011275555,13.827455,6.8880115,15.049079,3.9419906,8.582029,-1.5221933,3.308849,1.5959815,5.4246187,1.3464785,3.1216235,-0.8334749,1.7132138,-4.7473617,1.8563129"
Adder,Murlo,Adder,2013,,Unknown to the Unknown,/mnt/d/UTTU/Murlo/Murlo - Adder - 01 Adder.mp3,129.19921875,"-63.48934,70.184265,0.9845061,15.057423,8.270997,18.532345,0.12917268,9.51847,3.001862,6.9302287,3.4071748,2.894658,-2.1602042,0.9536034,-0.73870575,2.532583,-2.873948,3.139069,-5.6304984,1.4676582"
Irises,Murlo,Adder,2013,,Unknown to the Unknown,/mnt/d/UTTU/Murlo/Murlo - Adder - 02 Irises.mp3,129.19921875,"-94.720314,68.13831,-15.083784,13.471812,-3.4433713,0.92153853,-8.994053,-0.15456885,-2.6344578,0.84424764,-5.37161,0.39927912,1.4436986,8.272993,1.5995106,6.9363565,0.027381215,1.7134689,-4.3158073,1.1941584"
Palace,Murlo,Adder,2013,,Unknown to the Unknown,/mnt/d/UTTU/Murlo/Murlo - Adder - 03 Palace.mp3,129.19921875,"-134.32703,102.59218,-0.8579963,24.570095,7.6890717,13.147732,-2.8877323,5.226443,-6.075595,-1.8391349,-4.814164,-1.003484,-6.514658,-3.4124682,-6.6223836,-2.749068,-8.007845,-4.414488,-4.500127,-2.7857456"
4ME,My Nu Leng,4ME,2022,,Unknown to the Unknown,/mnt/d/UTTU/My Nu Leng/My Nu Leng - 4ME - 01 4ME.mp3,135.99917763157896,"-113.66248,113.102394,9.648571,17.657154,16.105183,18.06153,8.080156,8.246347,2.9531665,4.0145497,-1.6965089,1.269387,-1.7438139,2.4673944,0.6674515,4.071344,0.51602274,4.097496,1.5772564,-1.2319301"
Pulse,My Nu Leng,4ME,2022,,Unknown to the Unknown,/mnt/d/UTTU/My Nu Leng/My Nu Leng - 4ME - 02 Pulse.mp3,135.99917763157896,"-117.652245,89.06825,-2.0005898,19.00859,4.946416,15.47006,3.125182,9.862013,2.0971215,8.156584,3.1122715,6.635754,2.6631763,3.980967,0.7680624,3.693413,-0.5994805,4.2047544,2.5211065,5.5726886"
Champion Sound,My Nu Leng,Champion Sound EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/My Nu Leng/My Nu Leng - Champion Sound EP - 01 Champion Sound.mp3,86.1328125,"-37.550465,57.476665,1.7588605,24.413265,4.935662,11.096246,-2.9204695,1.2905439,-7.7102027,0.82451624,-5.4064136,0.5747849,-5.223291,1.7242783,-4.951504,-1.6355219,-5.336936,0.08359543,-3.8321226,1.0672157"
D.A.S,My Nu Leng,Champion Sound EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/My Nu Leng/My Nu Leng - Champion Sound EP - 02 D.A.S.mp3,129.19921875,"-67.47596,79.8177,-10.3625555,14.77163,-16.878365,7.6888733,-7.7900863,-1.5415126,-11.477469,-2.8725176,-5.1080637,1.7913277,-4.266836,-0.4884491,-4.7587023,-1.7759862,-3.8617094,-0.31909174,-3.451037,2.8105948"
1 More Tune,My Nu Leng,Champion Sound EP,2021,,Unknown to the Unknown,/mnt/d/UTTU/My Nu Leng/My Nu Leng - Champion Sound EP - 03 1 More Tune.mp3,129.19921875,"-36.457523,43.50204,-8.379811,8.318338,-3.7684846,10.68098,-5.5468316,4.448362,-6.3632536,4.2970347,-4.042573,3.394283,-5.4681253,-0.98717827,-3.5977452,1.5120227,-2.9374855,2.8115,-0.78609496,3.101522"
Falling Sun,Naone,Falling Sun + Bliss Inc Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Naone/Naone - Falling Sun + Bliss Inc Remix - 01 Falling Sun.mp3,92.28515625,"-71.758865,110.2486,5.2121406,16.593649,8.31909,13.260019,4.0579495,10.599079,2.1168265,9.719676,5.2432647,8.190486,1.8379126,3.6871786,-1.856839,1.5601391,-0.9085147,2.5253766,0.3971194,3.9890063"
Falling Sun (Bliss Inc Remix),Naone,Falling Sun + Bliss Inc Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Naone/Naone - Falling Sun + Bliss Inc Remix - 02 Falling Sun (Bliss Inc Remix).mp3,129.19921875,"-81.24653,108.6507,12.531318,19.660328,5.911256,17.26603,3.6017299,11.143726,-2.443031,1.699251,-0.81387544,1.2490039,0.08762141,2.1428525,-4.859436,0.3319687,-6.2585144,1.4060793,-1.1225764,1.9021586"
Center Creek Feat. Denial,Naone,Falling Sun + Bliss Inc Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Naone/Naone - Falling Sun + Bliss Inc Remix - 03 Center Creek Feat. Denial.mp3,112.34714673913044,"-108.1907,99.21145,34.51443,30.086105,6.3998456,14.318629,-0.12904842,6.6050754,-5.464619,4.75001,-3.1525195,2.243418,-2.3376827,1.1128085,-2.2976189,1.4290152,-2.0392303,1.0074434,-2.5257506,-0.0935038"
X-TDB133,Naone,Falling Sun + Bliss Inc Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Naone/Naone - Falling Sun + Bliss Inc Remix - 04 X-TDB133.mp3,129.19921875,"-152.97748,145.53204,25.827665,17.564793,0.6074331,0.19838238,-10.036299,9.644034,-2.7875566,12.430691,7.611525,8.340442,3.3106875,5.0117393,2.0619118,2.8721998,2.1173544,2.8107932,-2.8696227,0.53588206"
Spaceduck (Digital Bonus),Naone,Falling Sun + Bliss Inc Remix,2021,,Unknown to the Unknown,/mnt/d/UTTU/Naone/Naone - Falling Sun + Bliss Inc Remix - 05 Spaceduck (Digital Bonus).mp3,107.666015625,"-160.88313,70.5947,56.46685,25.68618,7.093411,14.227891,-4.322738,12.358523,-0.40876082,10.497799,6.951754,3.8706167,-2.5167866,-1.2922419,-2.1318913,1.9253293,2.7148142,7.4734793,1.1467154,4.142049"
DX Madness,Neil Landstrumm,Go See Thru EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Neil Landstrumm/Neil Landstrumm - Go See Thru EP - 01 DX Madness.mp3,129.19921875,"-82.683075,77.24214,14.988137,51.17222,4.990202,26.36082,5.2947598,13.580006,2.3928077,13.289674,8.436832,10.625723,-0.7265768,1.3752255,1.7760805,6.6002245,0.999326,2.6833103,-4.28654,-1.0313156"
Rectorate Power,Neil Landstrumm,Go See Thru EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Neil Landstrumm/Neil Landstrumm - Go See Thru EP - 02 Rectorate Power.mp3,129.19921875,"-104.14862,127.61667,44.480648,36.600315,4.392365,6.7378573,-14.63939,3.9897878,-10.600656,0.33651686,-1.92802,4.815764,4.4280605,4.2946944,2.6391878,9.993684,2.8872602,6.174338,4.43761,9.148082"
Sleep At Night (Feat. Brain Rays),Neil Landstrumm,Go See Thru EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Neil Landstrumm/Neil Landstrumm - Go See Thru EP - 03 Sleep At Night (Feat. Brain Rays).mp3,92.28515625,"-122.81406,68.07697,12.683841,33.4356,4.4620075,20.866123,7.455804,13.438068,6.267357,9.708539,3.8223686,6.179321,1.6589228,4.8182154,2.1588604,6.1049676,2.1167817,4.4154778,0.9605416,3.4660075"
Grape (Feat. Brain Rays),Neil Landstrumm,Go See Thru EP,2018,,Unknown to the Unknown,/mnt/d/UTTU/Neil Landstrumm/Neil Landstrumm - Go See Thru EP - 04 Grape (Feat. Brain Rays).mp3,161.4990234375,"-198.19965,102.82405,30.890476,7.910851,8.226951,13.800312,8.432999,12.856487,9.174256,11.99736,9.132067,9.637472,6.3957815,8.655626,5.3441753,6.5463037,2.2343934,0.48535022,1.9633969,4.258027"
Shadow Man,Neil Landstrumm,,2019,,Unknown to the Unknown,/mnt/d/UTTU/Neil Landstrumm/Neil Landstrumm - Shadow Man.mp3,129.19921875,"-114.02061,81.57262,14.780435,17.86424,15.399664,19.730774,10.922003,22.101715,10.25142,9.544202,2.9448013,10.290255,7.3585286,11.85481,5.9106092,1.9607052,-4.9882913,-8.432377,-10.327429,-3.488282"
Serena,Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez/Nemo Vachez - Serena - 01 Serena.mp3,135.99917763157896,"-95.72873,125.96173,-0.027381845,3.3524072,1.4157999,9.953736,-5.8064528,-2.2008693,-5.663744,-2.1852906,-5.626259,-1.208116,-6.197944,0.3178982,-4.159049,-4.165806,-0.114620715,0.46045676,-4.508976,-1.6824628"
Serena (SYO Transe Total Remix),Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez/Nemo Vachez - Serena - 02 Serena (SYO Transe Total Remix).mp3,107.666015625,"-112.15552,99.375885,32.22591,18.642065,5.676072,27.534422,4.252373,2.8288155,7.7271423,4.339209,0.32428873,8.618901,-2.4269695,3.6014872,1.6482617,0.30223653,1.0293264,4.2716217,-3.0313463,4.4822645"
Accordian,Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez/Nemo Vachez - Serena - 03 Accordian.mp3,129.19921875,"-124.63802,88.18972,44.466965,28.806265,10.749209,13.803935,-7.794493,1.898415,-6.855143,3.7439642,-1.0444659,2.6504922,-2.4014528,-1.1525456,-1.6535481,-1.4585042,-3.6552203,1.8357224,-0.26529476,2.0192804"
Undersea Tea,Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez/Nemo Vachez - Serena - 04 Undersea Tea.mp3,129.19921875,"-174.64049,161.49149,0.1593085,12.208646,7.887455,20.799376,-4.8866587,-2.9376438,-1.1199762,2.030127,-5.329184,2.6036446,-7.6954336,-10.64905,-5.666686,-1.567745,-3.4319263,-2.9361053,-3.8980942,-2.309774"
Bi-Polar (Nemo Vachez Future Woofer Mix),"Vytamin, Nemo Vachez",Serena,2020,,Unknown to the Unknown,"/mnt/d/UTTU/Nemo Vachez/Vytamin, Nemo Vachez - Serena - 05 Bi-Polar (Nemo Vachez Future Woofer Mix).mp3",135.99917763157896,"-132.78699,63.46975,19.232801,29.855183,9.197132,19.20608,4.328234,8.579925,-3.0997725,5.033553,-1.1416814,7.9900336,-1.9763523,6.6463113,-4.645882,4.2070885,1.892208,5.9579644,1.5919402,3.2286675"
Serena,Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez - Serena/Nemo Vachez - Serena - 01 Serena.mp3,135.99917763157896,"-95.72873,125.96173,-0.027381845,3.3524072,1.4157999,9.953736,-5.8064528,-2.2008693,-5.663744,-2.1852906,-5.626259,-1.208116,-6.197944,0.3178982,-4.159049,-4.165806,-0.114620715,0.46045676,-4.508976,-1.6824628"
Serena (SYO Transe Total Remix),Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez - Serena/Nemo Vachez - Serena - 02 Serena (SYO Transe Total Remix).mp3,107.666015625,"-112.15552,99.375885,32.22591,18.642065,5.676072,27.534422,4.252373,2.8288155,7.7271423,4.339209,0.32428873,8.618901,-2.4269695,3.6014872,1.6482617,0.30223653,1.0293264,4.2716217,-3.0313463,4.4822645"
Accordian,Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez - Serena/Nemo Vachez - Serena - 03 Accordian.mp3,129.19921875,"-124.63802,88.18972,44.466965,28.806265,10.749209,13.803935,-7.794493,1.898415,-6.855143,3.7439642,-1.0444659,2.6504922,-2.4014528,-1.1525456,-1.6535481,-1.4585042,-3.6552203,1.8357224,-0.26529476,2.0192804"
Undersea Tea,Nemo Vachez,Serena,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nemo Vachez - Serena/Nemo Vachez - Serena - 04 Undersea Tea.mp3,129.19921875,"-174.64049,161.49149,0.1593085,12.208646,7.887455,20.799376,-4.8866587,-2.9376438,-1.1199762,2.030127,-5.329184,2.6036446,-7.6954336,-10.64905,-5.666686,-1.567745,-3.4319263,-2.9361053,-3.8980942,-2.309774"
Bi-Polar (Nemo Vachez Future Woofer Mix),"Vytamin, Nemo Vachez",Serena,2020,,Unknown to the Unknown,"/mnt/d/UTTU/Nemo Vachez - Serena/Vytamin, Nemo Vachez - Serena - 05 Bi-Polar (Nemo Vachez Future Woofer Mix).mp3",135.99917763157896,"-132.78699,63.46975,19.232801,29.855183,9.197132,19.20608,4.328234,8.579925,-3.0997725,5.033553,-1.1416814,7.9900336,-1.9763523,6.6463113,-4.645882,4.2070885,1.892208,5.9579644,1.5919402,3.2286675"
Beyond The Measure,Nikk,Dance Trax 28 + Mark Broom Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nikk/Nikk - Dance Trax 28 + Mark Broom Remix - 01 Beyond The Measure.mp3,135.99917763157896,"-88.89797,42.28236,28.819977,26.668306,11.506198,29.475521,3.3574748,17.270147,9.9059515,10.098966,4.7999024,8.045368,3.4913263,8.99587,2.2269218,3.7257328,0.5295336,3.2856796,-2.9723003,4.460368"
Beyond The Measure (Mark Broom Remix),Nikk,Dance Trax 28 + Mark Broom Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nikk/Nikk - Dance Trax 28 + Mark Broom Remix - 02 Beyond The Measure (Mark Broom Remix).mp3,135.99917763157896,"-152.40765,43.81943,16.93619,39.9811,27.23872,27.929268,12.293361,13.974822,12.516672,18.411892,6.7989955,7.5428066,5.551,6.305166,3.64621,5.5221195,1.4017652,3.6760693,0.9527245,3.9427087"
100 Grams,Nikk,Dance Trax 28 + Mark Broom Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nikk/Nikk - Dance Trax 28 + Mark Broom Remix - 03 100 Grams.mp3,135.99917763157896,"-133.36418,81.68517,41.21552,36.359947,15.739209,25.544292,7.8184443,8.514888,5.194429,7.148662,2.3493717,5.595173,2.5994146,6.0413823,-0.73246026,5.3713555,-1.923196,-1.1758523,-1.4873627,2.5041125"
Sluricane,Nikk,Dance Trax 28 + Mark Broom Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nikk/Nikk - Dance Trax 28 + Mark Broom Remix - 04 Sluricane.mp3,89.10290948275862,"-115.81003,63.74596,36.31788,46.062237,10.748354,19.228996,6.8397813,2.980657,1.8339559,7.3125,3.322778,5.72255,1.254613,3.4061384,4.506564,4.639967,-4.807215,-0.6834054,0.54647267,0.8301431"
Usual Suspects,Nite Fleit,Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nite Fleit/Nite Fleit - Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes - 01 Usual Suspects.mp3,107.666015625,"-82.43083,74.04717,17.254826,20.094082,13.715289,17.345514,7.237827,13.437172,1.742402,9.756022,2.7205691,6.9948688,4.394483,7.714197,3.1403568,4.8194366,2.4646587,6.277063,3.1808736,4.8533483"
Usual Suspects (D. Tiffany Remix),Nite Fleit,Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nite Fleit/Nite Fleit - Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes - 02 Usual Suspects (D. Tiffany Remix).mp3,73.828125,"-91.64358,35.966663,17.695282,17.996643,8.161139,19.045925,4.7621026,11.7120905,1.4459847,7.375919,0.6092432,6.8762636,1.6349738,6.0464325,0.25597078,4.445476,-0.65412396,4.6725807,-0.9051654,2.4520514"
Folie A Dreamland,Nite Fleit,Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nite Fleit/Nite Fleit - Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes - 03 Folie A Dreamland.mp3,135.99917763157896,"-107.69924,84.748344,14.681744,26.307165,16.166054,19.017347,4.8931985,11.773198,4.656137,9.386087,3.7280548,2.9488244,4.8785515,8.888045,5.795595,6.724298,3.8979945,6.6637645,2.9701629,3.910934"
Folie A Dreamland (Jensen Interceptor Remix),Nite Fleit,Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nite Fleit/Nite Fleit - Dance Trax Vol.26 + D.Tiffany & Jensen Interceptor Remixes - 04 Folie A Dreamland (Jensen Interceptor Remix).mp3,135.99917763157896,"-56.383327,59.600033,19.297464,24.992254,9.327326,15.191041,2.2843142,14.534582,3.924542,10.801199,3.534697,4.223115,2.022313,6.6213465,4.418598,4.0424333,0.119232155,6.354972,-0.9255921,1.3385386"
Usual Suspects (D. Tiffany Remix),Nite Fleit,,2020,,Unknown to the Unknown,/mnt/d/UTTU/Nite Fleit/Nite Fleit - Usual Suspects (D. Tiffany Remix).mp3,73.828125,"-91.64358,35.966663,17.695282,17.996643,8.161139,19.045925,4.7621026,11.7120905,1.4459847,7.375919,0.6092432,6.8762636,1.6349738,6.0464325,0.25597078,4.445476,-0.65412396,4.6725807,-0.9051654,2.4520514"
Hearing R-Zac in 1997 made me want an R8,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 01 Hearing R-Zac in 1997 made me want an R8.mp3,86.1328125,"-151.83849,106.05759,39.08192,32.68809,17.259855,21.043468,8.644547,9.2734375,4.4172864,10.974275,7.3038335,4.3710938,5.3746367,8.060087,5.0835347,9.899672,5.4764266,9.115532,2.7097871,6.61143"
Locked Groove One,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 02 Locked Groove One.mp3,89.10290948275862,"-107.9861,147.3986,23.7235,15.155052,10.264753,19.677032,10.937557,5.862685,-1.1570017,6.410995,1.9303007,4.8863726,2.281123,8.879216,-1.2737141,0.7688549,-0.3578876,5.6741757,1.3679829,-1.9147005"
Locked Groove Two,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 03 Locked Groove Two.mp3,117.45383522727273,"-23.075785,61.25475,38.37326,7.206707,0.044898983,16.840052,11.788845,16.765291,7.4483147,10.982035,1.8308682,6.846693,3.8149712,5.9327183,3.16892,5.246653,-2.8460345,2.1961858,-0.9035706,3.0201442"
Locked Groove Three,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 04 Locked Groove Three.mp3,89.10290948275862,"-104.03137,30.71717,35.717022,32.33738,3.5798855,13.868818,14.224548,10.98713,3.3399467,14.413121,6.053416,4.8088017,7.7556787,3.7946005,-2.6050944,4.999609,0.6128722,5.5178356,9.113274,4.967454"
Locked Groove Four,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 05 Locked Groove Four.mp3,89.10290948275862,"-111.85325,77.997734,41.73199,24.44225,17.052853,29.87989,6.2677054,13.097693,4.897816,9.817842,5.173302,5.660099,3.3175106,9.099721,-1.4140104,6.2682834,4.824033,0.41633236,2.7191682,4.4712663"
Locked Groove Five,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 06 Locked Groove Five.mp3,89.10290948275862,"-71.292595,50.989784,73.86568,8.951554,7.668059,17.813139,17.530317,15.249889,11.339453,4.4183483,1.6602604,9.918771,1.5836986,4.5114155,0.04993829,4.3564253,0.22078279,1.870248,2.8566306,3.4108963"
Locked Groove Six,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 07 Locked Groove Six.mp3,89.10290948275862,"-143.50673,166.19565,27.433136,14.349437,-11.245425,5.4553933,7.5281644,9.970755,7.1022935,11.154706,5.4035096,5.955111,2.6080673,6.4012604,3.1060612,3.9394794,0.47864458,2.0740716,-0.4393131,-0.2229886"
Locked Groove Seven,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 08 Locked Groove Seven.mp3,89.10290948275862,"-103.96172,122.863754,11.087041,10.631843,7.0947123,5.679557,1.9006292,5.6636934,3.3799648,4.5426884,4.975773,12.30274,4.6943145,-0.01234124,3.075846,9.2430105,1.9212135,5.9033427,0.08890022,3.7997303"
Locked Groove Eight,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 09 Locked Groove Eight.mp3,89.10290948275862,"-87.727684,109.061844,33.238567,34.450947,3.4010108,17.938692,12.879494,10.93832,4.7010307,6.944637,3.476448,8.91344,7.819344,10.659786,1.855885,5.603483,0.33609667,6.7583265,1.9109608,2.9600015"
Locked Groove Nine,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 10 Locked Groove Nine.mp3,117.45383522727273,"-13.389219,95.596436,5.925912,19.226885,1.9002075,12.297042,8.185743,6.5333476,2.4158125,3.7706113,-1.4784337,1.2973206,-2.6113389,3.529233,-0.6419478,4.4555807,1.7704431,4.3326516,0.48061833,2.8869731"
Locked Groove Ten,Noise Abatement,Dance Trax Vol. 44,2022,,Unknown to the Unknown,/mnt/d/UTTU/Noise Abatement/Noise Abatement - Dance Trax Vol. 44 - 11 Locked Groove Ten.mp3,117.45383522727273,"-62.5944,73.95649,55.082565,11.756156,-5.1239142,17.073765,11.07176,16.202484,3.7108302,7.49398,0.9059658,7.2236958,3.8389857,4.816727,0.25113532,4.4002037,0.123560265,3.8609703,0.12998557,1.8667299"
Shine A Light,Obalski,Shine A Light EP + Kim Ann Foxman Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Obalski/Obalski - Shine A Light EP + Kim Ann Foxman Remix - 01 Shine A Light.mp3,129.19921875,"-187.2737,90.00117,29.547905,35.41653,16.220453,18.12224,8.3098545,10.711101,4.9576035,9.476425,2.43465,7.3157086,3.2132583,6.27122,1.9482173,3.984266,-0.93358785,4.8012013,0.8406293,3.9172935"
Cloud Saver,Obalski,Shine A Light EP + Kim Ann Foxman Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Obalski/Obalski - Shine A Light EP + Kim Ann Foxman Remix - 02 Cloud Saver.mp3,123.046875,"-168.01855,94.76269,-5.0326347,25.022968,18.758585,26.653214,7.786077,11.89718,1.6584127,8.38275,0.08013466,6.937042,1.5251741,7.5966487,1.9311717,4.632003,-0.9159987,4.017043,0.84318036,5.9339275"
Space Nation,Obalski,Shine A Light EP + Kim Ann Foxman Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Obalski/Obalski - Shine A Light EP + Kim Ann Foxman Remix - 03 Space Nation.mp3,123.046875,"-226.04922,145.10611,31.444248,39.89193,24.512985,11.163665,9.562822,12.046206,3.110481,3.8705502,1.0239426,2.0527275,2.7351065,5.1966114,0.008074715,1.1344852,-1.0275378,0.779626,-1.1517239,1.011351"
Acid 1986 (Kim Ann Foxman Remix),Obalski,Shine A Light EP + Kim Ann Foxman Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Obalski/Obalski - Shine A Light EP + Kim Ann Foxman Remix - 04 Acid 1986 (Kim Ann Foxman Remix).mp3,123.046875,"-118.60739,66.28293,13.478485,14.350354,10.855422,13.071298,2.446412,7.858893,5.211094,8.532598,2.6146884,3.4697669,4.111397,10.7217245,7.637284,8.345056,5.741798,6.275175,2.9271007,3.3160071"
Acid 1986,Obalski,Shine A Light EP + Kim Ann Foxman Remix,2020,,Unknown to the Unknown,/mnt/d/UTTU/Obalski/Obalski - Shine A Light EP + Kim Ann Foxman Remix - 05 Acid 1986.mp3,123.046875,"-147.59987,89.34139,14.169504,26.135357,9.728392,21.585962,6.6099625,13.383325,5.6250525,9.621182,4.40551,5.485873,2.7059648,4.703411,1.1805433,4.2995305,0.82032114,3.6782827,0.62972885,3.2248018"
Hyper Logic,Oushe,Hyper Logic,2019,,Unknown to the Unknown,/mnt/d/UTTU/Oushe/Oushe - Hyper Logic - 01 Hyper Logic.mp3,89.10290948275862,"-105.43549,84.25026,10.498017,21.098118,11.295984,10.161286,0.05199528,10.529295,-2.6961641,7.655831,-0.47689006,2.1358478,-2.9223108,2.997303,1.0224288,7.2953744,3.9877222,4.4896393,3.6070535,7.013052"