-
Notifications
You must be signed in to change notification settings - Fork 4
/
corpus_conversion.json
5426 lines (5426 loc) · 282 KB
/
corpus_conversion.json
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
[
{
"in": "../scores/Abbott,_Jane_Bingham/_/Just_for_Today/lc6583477.mscx",
"out": "../scores/Abbott,_Jane_Bingham/_/Just_for_Today/lc6583477.mxl"
},
{
"in": "../scores/Abbott,_Jane_Bingham/_/Think_of_Today/lc6583512.mscx",
"out": "../scores/Abbott,_Jane_Bingham/_/Think_of_Today/lc6583512.mxl"
},
{
"in": "../scores/Abrams,_Harriett/_/Crazy_Jane/lc6583907.mscx",
"out": "../scores/Abrams,_Harriett/_/Crazy_Jane/lc6583907.mxl"
},
{
"in": "../scores/Abrams,_Harriett/_/The_Orphan\u2019s_Prayer/lc6583966.mscx",
"out": "../scores/Abrams,_Harriett/_/The_Orphan\u2019s_Prayer/lc6583966.mxl"
},
{
"in": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/1_The_Old_Fisherman_of_the_Mists_and_Waters/lc6211535.mscx",
"out": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/1_The_Old_Fisherman_of_the_Mists_and_Waters/lc6211535.mxl"
},
{
"in": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/2_The_Ghost_Road/lc6211549.mscx",
"out": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/2_The_Ghost_Road/lc6211549.mxl"
},
{
"in": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/3_Under_the_Moon/lc6211555.mscx",
"out": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/3_Under_the_Moon/lc6211555.mxl"
},
{
"in": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/4_The_Celestial_Weaver/lc6211559.mscx",
"out": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/4_The_Celestial_Weaver/lc6211559.mxl"
},
{
"in": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/5_Return_of_Spring/lc6211561.mscx",
"out": "../scores/Bantock,_Granville/5_Songs_from_the_Chinese_Poets,_1st_Series/5_Return_of_Spring/lc6211561.mxl"
},
{
"in": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Farewell_to_Erin/lc6623221.mscx",
"out": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Farewell_to_Erin/lc6623221.mxl"
},
{
"in": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Five_o\u2019clock_in_the_morning/lc6623145.mscx",
"out": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Five_o\u2019clock_in_the_morning/lc6623145.mxl"
},
{
"in": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Milly\u2019s_Faith/lc6622814.mscx",
"out": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Milly\u2019s_Faith/lc6622814.mxl"
},
{
"in": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Strangers_Yet/lc6585571.mscx",
"out": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/Strangers_Yet/lc6585571.mxl"
},
{
"in": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/The_Brook/lc6586675.mscx",
"out": "../scores/Barnard,_Charlotte_Alington_-_aka_Claribel/_/The_Brook/lc6586675.mxl"
},
{
"in": "../scores/Barnby,_Joseph/_/The_Beggar_Maid/lc6478624.mscx",
"out": "../scores/Barnby,_Joseph/_/The_Beggar_Maid/lc6478624.mxl"
},
{
"in": "../scores/Barnby,_Joseph/_/To_England/lc6479829.mscx",
"out": "../scores/Barnby,_Joseph/_/To_England/lc6479829.mxl"
},
{
"in": "../scores/Barns,_Ethel/_/Sleep,_Weary_Heart/lc6586696.mscx",
"out": "../scores/Barns,_Ethel/_/Sleep,_Weary_Heart/lc6586696.mxl"
},
{
"in": "../scores/Beach,_Amy/3_Browning_Songs,_Op.44/1_The_Year\u2019s_at_the_Spring/lc6212179.mscx",
"out": "../scores/Beach,_Amy/3_Browning_Songs,_Op.44/1_The_Year\u2019s_at_the_Spring/lc6212179.mxl"
},
{
"in": "../scores/Beach,_Amy/3_Browning_Songs,_Op.44/2_Ah,_Love,_but_a_Day!/lc6212193.mscx",
"out": "../scores/Beach,_Amy/3_Browning_Songs,_Op.44/2_Ah,_Love,_but_a_Day!/lc6212193.mxl"
},
{
"in": "../scores/Beach,_Amy/3_Browning_Songs,_Op.44/3_I_Send_My_Heart_up_to_Thee!/lc6212196.mscx",
"out": "../scores/Beach,_Amy/3_Browning_Songs,_Op.44/3_I_Send_My_Heart_up_to_Thee!/lc6212196.mxl"
},
{
"in": "../scores/Beach,_Amy/3_Shakespeare_Songs,_Op.37/1_O_Mistress_Mine/lc6564424.mscx",
"out": "../scores/Beach,_Amy/3_Shakespeare_Songs,_Op.37/1_O_Mistress_Mine/lc6564424.mxl"
},
{
"in": "../scores/Beach,_Amy/3_Shakespeare_Songs,_Op.37/2_Take,_O_Take_those_Lips_Away/lc6564767.mscx",
"out": "../scores/Beach,_Amy/3_Shakespeare_Songs,_Op.37/2_Take,_O_Take_those_Lips_Away/lc6564767.mxl"
},
{
"in": "../scores/Beach,_Amy/3_Shakespeare_Songs,_Op.37/3_Fairy_Lullaby/lc6564816.mscx",
"out": "../scores/Beach,_Amy/3_Shakespeare_Songs,_Op.37/3_Fairy_Lullaby/lc6564816.mxl"
},
{
"in": "../scores/Beach,_Amy/4_Songs,_Op.51/1_Ich_sagte_nicht/lc6245971.mscx",
"out": "../scores/Beach,_Amy/4_Songs,_Op.51/1_Ich_sagte_nicht/lc6245971.mxl"
},
{
"in": "../scores/Beach,_Amy/4_Songs,_Op.51/2_Wir_drei/lc6245972.mscx",
"out": "../scores/Beach,_Amy/4_Songs,_Op.51/2_Wir_drei/lc6245972.mxl"
},
{
"in": "../scores/Beach,_Amy/4_Songs,_Op.51/3_Juni/lc6245973.mscx",
"out": "../scores/Beach,_Amy/4_Songs,_Op.51/3_Juni/lc6245973.mxl"
},
{
"in": "../scores/Beach,_Amy/4_Songs,_Op.51/4_Je_demande_\u00e0_l\u2019oiseau/lc6245974.mscx",
"out": "../scores/Beach,_Amy/4_Songs,_Op.51/4_Je_demande_\u00e0_l\u2019oiseau/lc6245974.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/1_Bitten/lc5115311.mscx",
"out": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/1_Bitten/lc5115311.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/2_Die_Liebe_des_N\u00e4chsten/lc4946378.mscx",
"out": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/2_Die_Liebe_des_N\u00e4chsten/lc4946378.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/3_Vom_Tode/lc5115550.mscx",
"out": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/3_Vom_Tode/lc5115550.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/4_Die_Ehre_Gottes_aus_der_Natur/lc5121134.mscx",
"out": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/4_Die_Ehre_Gottes_aus_der_Natur/lc5121134.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/5_Gottes_Macht_und_Vorsehung/lc5121692.mscx",
"out": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/5_Gottes_Macht_und_Vorsehung/lc5121692.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/6_Busslied/lc5125008.mscx",
"out": "../scores/Beethoven,_Ludwig_van/6_Lieder,_Op.48/6_Busslied/lc5125008.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/1_Urians_Reise_um_die_Welt/lc6488630.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/1_Urians_Reise_um_die_Welt/lc6488630.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/2_Feuerfarb/lc6491340.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/2_Feuerfarb/lc6491340.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/3_Das_Liedchen_von_der_Ruhe/lc6491353.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/3_Das_Liedchen_von_der_Ruhe/lc6491353.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/4_Mailied/lc6491377.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/4_Mailied/lc6491377.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/5_Mollys_Abschied/lc6491411.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/5_Mollys_Abschied/lc6491411.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/6_Lied/lc6491431.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/6_Lied/lc6491431.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/7_Marmotte/lc6491461.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/7_Marmotte/lc6491461.mxl"
},
{
"in": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/8_Das_Bl\u00fcmchen_Wunderhold/lc6491478.mscx",
"out": "../scores/Beethoven,_Ludwig_van/8_Lieder,_Op.52/8_Das_Bl\u00fcmchen_Wunderhold/lc6491478.mxl"
},
{
"in": "../scores/Bianchi_Lacy,_Jane/_/Helen/lc6592481.mscx",
"out": "../scores/Bianchi_Lacy,_Jane/_/Helen/lc6592481.mxl"
},
{
"in": "../scores/Bishop,_Henry/_/Home,_Sweet_Home/lc6486038.mscx",
"out": "../scores/Bishop,_Henry/_/Home,_Sweet_Home/lc6486038.mxl"
},
{
"in": "../scores/Bishop,_Henry/_/Sappho_at_her_Loom/lc6446003.mscx",
"out": "../scores/Bishop,_Henry/_/Sappho_at_her_Loom/lc6446003.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/01_Chanson_d\u2019avril/lc6877413.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/01_Chanson_d\u2019avril/lc6877413.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/02_Le_matin/lc6877530.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/02_Le_matin/lc6877530.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/03_Vieille_chanson/lc6877589.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/03_Vieille_chanson/lc6877589.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/04_Adieux_de_l\u2019h\u00f4tesse_arabe/lc6878940.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/04_Adieux_de_l\u2019h\u00f4tesse_arabe/lc6878940.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/05_R\u00eave_de_la_bien-aim\u00e9e/lc6888209.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/05_R\u00eave_de_la_bien-aim\u00e9e/lc6888209.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/06_J\u2019aime_l\u2019amour/lc6894036.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/06_J\u2019aime_l\u2019amour/lc6894036.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/07_Vous_ne_priez_pas/lc6895220.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/07_Vous_ne_priez_pas/lc6895220.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/08_Ma_vie_a_son_secret/lc6895581.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/08_Ma_vie_a_son_secret/lc6895581.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/09_Pastorale/lc6898041.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/09_Pastorale/lc6898041.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/10_S\u00e9r\u00e9nade/lc6898141.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/10_S\u00e9r\u00e9nade/lc6898141.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/11_Berceuse/lc6901078.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/11_Berceuse/lc6901078.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/12_La_chanson_du_fou/lc6901197.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/12_La_chanson_du_fou/lc6901197.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/13_Absence/lc5079487.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/13_Absence/lc5079487.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/14_Douce_mer/lc6902355.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/14_Douce_mer/lc6902355.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/15_Apr\u00e8s_l\u2019hiver/lc6902615.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/15_Apr\u00e8s_l\u2019hiver/lc6902615.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/16_La_coccinelle/lc6903757.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/16_La_coccinelle/lc6903757.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/17_Chant_d\u2019amour!/lc6903010.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/17_Chant_d\u2019amour!/lc6903010.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/18_Je_n\u2019en_dirai_rien!/lc6905092.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/18_Je_n\u2019en_dirai_rien!/lc6905092.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/19_L\u2019esprit_saint/lc6906944.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/19_L\u2019esprit_saint/lc6906944.mxl"
},
{
"in": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/20_Tarentelle/lc6908450.mscx",
"out": "../scores/Bizet,_Georges/20_M\u00e9lodies,_Op.21/20_Tarentelle/lc6908450.mxl"
},
{
"in": "../scores/Bizet,_Georges/Feuilles_d\u2019album/1_\u00c0_une_Fleur/lc5079494.mscx",
"out": "../scores/Bizet,_Georges/Feuilles_d\u2019album/1_\u00c0_une_Fleur/lc5079494.mxl"
},
{
"in": "../scores/Bizet,_Georges/Feuilles_d\u2019album/2_Adieux_\u00e0_Suzon/lc5079502.mscx",
"out": "../scores/Bizet,_Georges/Feuilles_d\u2019album/2_Adieux_\u00e0_Suzon/lc5079502.mxl"
},
{
"in": "../scores/Bizet,_Georges/Feuilles_d\u2019album/3_Sonnet/lc5079512.mscx",
"out": "../scores/Bizet,_Georges/Feuilles_d\u2019album/3_Sonnet/lc5079512.mxl"
},
{
"in": "../scores/Bizet,_Georges/Feuilles_d\u2019album/4_Guitare/lc5079521.mscx",
"out": "../scores/Bizet,_Georges/Feuilles_d\u2019album/4_Guitare/lc5079521.mxl"
},
{
"in": "../scores/Bizet,_Georges/Feuilles_d\u2019album/5_Rose_d\u2019Amour/lc5079527.mscx",
"out": "../scores/Bizet,_Georges/Feuilles_d\u2019album/5_Rose_d\u2019Amour/lc5079527.mxl"
},
{
"in": "../scores/Bizet,_Georges/Feuilles_d\u2019album/6_Le_grillon/lc5079539.mscx",
"out": "../scores/Bizet,_Georges/Feuilles_d\u2019album/6_Le_grillon/lc5079539.mxl"
},
{
"in": "../scores/Bonis,_Mel/_/Allons_prier!/lc6635424.mscx",
"out": "../scores/Bonis,_Mel/_/Allons_prier!/lc6635424.mxl"
},
{
"in": "../scores/Bonis,_Mel/_/Le_chat_sur_le_toit,_Op.93/lc6635391.mscx",
"out": "../scores/Bonis,_Mel/_/Le_chat_sur_le_toit,_Op.93/lc6635391.mxl"
},
{
"in": "../scores/Boulanger,_Lili/_/Attente/lc5983850.mscx",
"out": "../scores/Boulanger,_Lili/_/Attente/lc5983850.mxl"
},
{
"in": "../scores/Boulanger,_Lili/_/Dans_l\u2019immense_tristesse/lc5983777.mscx",
"out": "../scores/Boulanger,_Lili/_/Dans_l\u2019immense_tristesse/lc5983777.mxl"
},
{
"in": "../scores/Boulanger,_Lili/_/Reflets/lc5983679.mscx",
"out": "../scores/Boulanger,_Lili/_/Reflets/lc5983679.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/01_Elle_\u00e9tait_descendue_au_bas_de_la_prairie/lc5852737.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/01_Elle_\u00e9tait_descendue_au_bas_de_la_prairie/lc5852737.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/02_Elle_est_gravement_gaie/lc5854283.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/02_Elle_est_gravement_gaie/lc5854283.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/03_Parfois,_je_suis_triste/lc5855622.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/03_Parfois,_je_suis_triste/lc5855622.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/04_Un_po\u00e8te_disait/lc5857981.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/04_Un_po\u00e8te_disait/lc5857981.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/05_Au_pied_de_mon_lit/lc5861338.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/05_Au_pied_de_mon_lit/lc5861338.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/06_Si_tout_ceci_n\u2019est_qu\u2019un_pauvre_r\u00eave/lc5861752.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/06_Si_tout_ceci_n\u2019est_qu\u2019un_pauvre_r\u00eave/lc5861752.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/07_Nous_nous_aimerons_tant/lc5864781.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/07_Nous_nous_aimerons_tant/lc5864781.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/08_Vous_m\u2019avez_regard\u00e9_avec_toute_votre_\u00e2me/lc5864837.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/08_Vous_m\u2019avez_regard\u00e9_avec_toute_votre_\u00e2me/lc5864837.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/09_Les_lilas_qui_avaient_fleuri/lc5884544.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/09_Les_lilas_qui_avaient_fleuri/lc5884544.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/10_Deux_ancolies/lc5887314.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/10_Deux_ancolies/lc5887314.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/11_Par_ce_que_j\u2019ai_souffert/lc5901729.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/11_Par_ce_que_j\u2019ai_souffert/lc5901729.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/12_Je_garde_une_m\u00e9daille_d\u2019elle/lc5901950.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/12_Je_garde_une_m\u00e9daille_d\u2019elle/lc5901950.mxl"
},
{
"in": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/13_Demain_fera_un_an/lc5902873.mscx",
"out": "../scores/Boulanger,_Lili/Clairi\u00e8res_dans_le_ciel/13_Demain_fera_un_an/lc5902873.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/01_Constancy/lc6403636.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/01_Constancy/lc6403636.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/02_Cradle_Song/lc6403758.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/02_Cradle_Song/lc6403758.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/03_Love\u2019s_Journey/lc6404150.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/03_Love\u2019s_Journey/lc6404150.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/04_Truant_Wings/lc6404394.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/04_Truant_Wings/lc6404394.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/05_In_Summer_Weather/lc6405467.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/05_In_Summer_Weather/lc6405467.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/06_Robin_Sly/lc6405594.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/06_Robin_Sly/lc6405594.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/07_A_Song_of_the_South/lc6407509.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/07_A_Song_of_the_South/lc6407509.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/08_The_Maid_of_Elsinore/lc6409323.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/08_The_Maid_of_Elsinore/lc6409323.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/09_A_Pretty_Maid/lc6412767.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/09_A_Pretty_Maid/lc6412767.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/10_For_Ever_Mine/lc6416048.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/10_For_Ever_Mine/lc6416048.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/11_To_Welcome_You/lc6414608.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/11_To_Welcome_You/lc6414608.mxl"
},
{
"in": "../scores/Boulton,_Harold/12_New_Songs/12_The_Windflower/lc6416290.mscx",
"out": "../scores/Boulton,_Harold/12_New_Songs/12_The_Windflower/lc6416290.mxl"
},
{
"in": "../scores/Brahms,_Johannes/2_Ges\u00e4nge,_Op.91/1_Gestillte_Sehnsucht/lc6302395.mscx",
"out": "../scores/Brahms,_Johannes/2_Ges\u00e4nge,_Op.91/1_Gestillte_Sehnsucht/lc6302395.mxl"
},
{
"in": "../scores/Brahms,_Johannes/2_Ges\u00e4nge,_Op.91/2_Geistliches_Wiegenlied/lc6320420.mscx",
"out": "../scores/Brahms,_Johannes/2_Ges\u00e4nge,_Op.91/2_Geistliches_Wiegenlied/lc6320420.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/1_Die_Kr\u00e4nze/lc5084888.mscx",
"out": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/1_Die_Kr\u00e4nze/lc5084888.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/2_Magyarisch/lc5071668.mscx",
"out": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/2_Magyarisch/lc5071668.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/3_Die_Schale_der_Vergessenheit/lc5071654.mscx",
"out": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/3_Die_Schale_der_Vergessenheit/lc5071654.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/4_An_die_Nachtigall/lc5084966.mscx",
"out": "../scores/Brahms,_Johannes/4_Ges\u00e4nge,_Op.46/4_An_die_Nachtigall/lc5084966.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/1_Denn_es_gehet_dem_Menschen_wie_dem_Vieh/lc6686592.mscx",
"out": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/1_Denn_es_gehet_dem_Menschen_wie_dem_Vieh/lc6686592.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/2_Ich_wandte_mich_und_sahe/lc6686901.mscx",
"out": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/2_Ich_wandte_mich_und_sahe/lc6686901.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/3_O_Tod,_wie_bitter_bist_du!/lc6686980.mscx",
"out": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/3_O_Tod,_wie_bitter_bist_du!/lc6686980.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/4_Wenn_ich_mit_Menschen-_und_mit_Engelzungen_redete/lc6687153.mscx",
"out": "../scores/Brahms,_Johannes/4_Serious_Songs,_Op.121/4_Wenn_ich_mit_Menschen-_und_mit_Engelzungen_redete/lc6687153.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Songs,_Op.43/1_Von_ewiger_Liebe/lc5153813.mscx",
"out": "../scores/Brahms,_Johannes/4_Songs,_Op.43/1_Von_ewiger_Liebe/lc5153813.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Songs,_Op.43/2_Die_Mainacht/lc5153947.mscx",
"out": "../scores/Brahms,_Johannes/4_Songs,_Op.43/2_Die_Mainacht/lc5153947.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Songs,_Op.43/3_Ich_schell_mein_Horn_ins_Jammertal/lc5067677.mscx",
"out": "../scores/Brahms,_Johannes/4_Songs,_Op.43/3_Ich_schell_mein_Horn_ins_Jammertal/lc5067677.mxl"
},
{
"in": "../scores/Brahms,_Johannes/4_Songs,_Op.43/4_Das_Lied_vom_Herrn_von_Falkenstein/lc5067672.mscx",
"out": "../scores/Brahms,_Johannes/4_Songs,_Op.43/4_Das_Lied_vom_Herrn_von_Falkenstein/lc5067672.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/1_Botschaft/lc5656522.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/1_Botschaft/lc5656522.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/2_Liebesglut/lc4946175.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/2_Liebesglut/lc4946175.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/3_Sonntag/lc5654342.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/3_Sonntag/lc5654342.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/4_O_liebliche_Wangen/lc5659823.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/4_O_liebliche_Wangen/lc5659823.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/5_Die_Liebende_schreibt/lc5071644.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.47/5_Die_Liebende_schreibt/lc5071644.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/1_Am_Sonntag_Morgen/lc5700433.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/1_Am_Sonntag_Morgen/lc5700433.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/2_An_ein_Veilchen/lc5667944.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/2_An_ein_Veilchen/lc5667944.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/3_Sehnsucht/lc5098713.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/3_Sehnsucht/lc5098713.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/4_Wiegenlied/lc5701612.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/4_Wiegenlied/lc5701612.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/5_Abendd\u00e4mmerung/lc4978492.mscx",
"out": "../scores/Brahms,_Johannes/5_Lieder,_Op.49/5_Abendd\u00e4mmerung/lc4978492.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Poems,_Op.19/1_Der_Kuss/lc5069022.mscx",
"out": "../scores/Brahms,_Johannes/5_Poems,_Op.19/1_Der_Kuss/lc5069022.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Poems,_Op.19/2_Scheiden_und_Meiden/lc5069028.mscx",
"out": "../scores/Brahms,_Johannes/5_Poems,_Op.19/2_Scheiden_und_Meiden/lc5069028.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Poems,_Op.19/3_In_der_Ferne/lc5069033.mscx",
"out": "../scores/Brahms,_Johannes/5_Poems,_Op.19/3_In_der_Ferne/lc5069033.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Poems,_Op.19/4_Der_Schmied/lc5654485.mscx",
"out": "../scores/Brahms,_Johannes/5_Poems,_Op.19/4_Der_Schmied/lc5654485.mxl"
},
{
"in": "../scores/Brahms,_Johannes/5_Poems,_Op.19/5_An_eine_\u00c4olsharfe/lc5667745.mscx",
"out": "../scores/Brahms,_Johannes/5_Poems,_Op.19/5_An_eine_\u00c4olsharfe/lc5667745.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.3/1_Liebestreu/lc5667843.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.3/1_Liebestreu/lc5667843.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.3/2_Liebe_und_Fr\u00fchling_I/lc4904021.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.3/2_Liebe_und_Fr\u00fchling_I/lc4904021.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.3/3_Liebe_und_Fr\u00fchling_II/lc5004701.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.3/3_Liebe_und_Fr\u00fchling_II/lc5004701.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.3/4_Lied_aus_dem_Gedicht_\u201eIvan\u201c/lc5667849.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.3/4_Lied_aus_dem_Gedicht_\u201eIvan\u201c/lc5667849.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.3/5_In_der_Fremde/lc5098672.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.3/5_In_der_Fremde/lc5098672.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.3/6_Lied/lc5098678.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.3/6_Lied/lc5098678.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.6/1_Spanisches_Lied/lc5636215.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.6/1_Spanisches_Lied/lc5636215.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.6/2_Der_Fr\u00fchling/lc5067692.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.6/2_Der_Fr\u00fchling/lc5067692.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.6/3_Nachwirkung/lc5098700.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.6/3_Nachwirkung/lc5098700.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.6/4_Juchhe!/lc5098690.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.6/4_Juchhe!/lc5098690.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.6/5_Wie_die_Wolke_nach_der_Sonne/lc5098732.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.6/5_Wie_die_Wolke_nach_der_Sonne/lc5098732.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.6/6_Nachtigallen_schwingen_lustig/lc5639135.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.6/6_Nachtigallen_schwingen_lustig/lc5639135.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.7/1_Treue_Liebe/lc5649214.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.7/1_Treue_Liebe/lc5649214.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.7/2_Parole/lc5652206.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.7/2_Parole/lc5652206.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.7/3_Ankl\u00e4nge/lc5652250.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.7/3_Ankl\u00e4nge/lc5652250.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.7/4_Volkslied/lc5098632.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.7/4_Volkslied/lc5098632.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.7/5_Die_Trauernde/lc5098625.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.7/5_Die_Trauernde/lc5098625.mxl"
},
{
"in": "../scores/Brahms,_Johannes/6_Songs,_Op.7/6_Heimkehr/lc5653497.mscx",
"out": "../scores/Brahms,_Johannes/6_Songs,_Op.7/6_Heimkehr/lc5653497.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/1_Der_Gang_zum_Liebchen/lc5705406.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/1_Der_Gang_zum_Liebchen/lc5705406.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/2_Der_\u00dcberl\u00e4ufer/lc5071622.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/2_Der_\u00dcberl\u00e4ufer/lc5071622.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/3_Liebesklage_des_M\u00e4dchens/lc4946239.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/3_Liebesklage_des_M\u00e4dchens/lc4946239.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/4_Gold_\u00fcberwiegt_die_Liebe/lc5705564.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/4_Gold_\u00fcberwiegt_die_Liebe/lc5705564.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/5_Trost_in_Tr\u00e4nen/lc5071629.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/5_Trost_in_Tr\u00e4nen/lc5071629.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/6_Vergangen_ist_mir_Gl\u00fcck_und_Heil/lc5705502.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/6_Vergangen_ist_mir_Gl\u00fcck_und_Heil/lc5705502.mxl"
},
{
"in": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/7_Herbstgef\u00fchl/lc5071636.mscx",
"out": "../scores/Brahms,_Johannes/7_Lieder,_Op.48/7_Herbstgef\u00fchl/lc5071636.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/1_Vor_dem_Fenster/lc5695716.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/1_Vor_dem_Fenster/lc5695716.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/2_Vom_verwundeten_Knaben/lc5695728.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/2_Vom_verwundeten_Knaben/lc5695728.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/3_Murrays_Ermordung/lc5695734.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/3_Murrays_Ermordung/lc5695734.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/4_Ein_Sonett/lc5725144.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/4_Ein_Sonett/lc5725144.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/5_Trennung/lc5726490.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/5_Trennung/lc5726490.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/6_Gang_zur_Liebsten/lc5098666.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/6_Gang_zur_Liebsten/lc5098666.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/7_St\u00e4ndchen/lc5729178.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/7_St\u00e4ndchen/lc5729178.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/8_Sehnsucht/lc5729860.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_and_Romances,_Op.14/8_Sehnsucht/lc5729860.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/1_Von_waldbekr\u00e4nzter_H\u00f6he/lc5106861.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/1_Von_waldbekr\u00e4nzter_H\u00f6he/lc5106861.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/2_Wenn_du_nur_zuweilen_l\u00e4chelst/lc5107106.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/2_Wenn_du_nur_zuweilen_l\u00e4chelst/lc5107106.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/3_Es_tr\u00e4umte_mir/lc5071686.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/3_Es_tr\u00e4umte_mir/lc5071686.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/4_Ach,_wende_diesen_Blick/lc5033057.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/4_Ach,_wende_diesen_Blick/lc5033057.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/5_In_meiner_N\u00e4chte_Sehnen/lc5071689.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/5_In_meiner_N\u00e4chte_Sehnen/lc5071689.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/6_Strahlt_zuweilen_auch_ein_mildes_Licht/lc5071694.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/6_Strahlt_zuweilen_auch_ein_mildes_Licht/lc5071694.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/7_Die_Schnur,_die_Perl_an_Perle/lc5071678.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/7_Die_Schnur,_die_Perl_an_Perle/lc5071678.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/8_Unbewegte_laue_Luft/lc5155459.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.57/8_Unbewegte_laue_Luft/lc5155459.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/1_Blinde_Kuh/lc5123355.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/1_Blinde_Kuh/lc5123355.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/2_W\u00e4hrend_des_Regens/lc5098725.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/2_W\u00e4hrend_des_Regens/lc5098725.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/3_Die_Spr\u00f6de/lc5071703.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/3_Die_Spr\u00f6de/lc5071703.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/4_O_komme,_holde_Sommernacht/lc5098705.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/4_O_komme,_holde_Sommernacht/lc5098705.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/5_Schwermut/lc5098709.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/5_Schwermut/lc5098709.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/6_In_der_Gasse/lc5098685.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/6_In_der_Gasse/lc5098685.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/7_Vor\u00fcber/lc5098719.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/7_Vor\u00fcber/lc5098719.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/8_Serenade/lc5098715.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.58/8_Serenade/lc5098715.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/1_D\u00e4mmrung_senkte_sich_von_oben/lc5057822.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/1_D\u00e4mmrung_senkte_sich_von_oben/lc5057822.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/2_Auf_dem_See/lc5057985.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/2_Auf_dem_See/lc5057985.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/3_Regenlied/lc5058091.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/3_Regenlied/lc5058091.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/4_Nachklang/lc5058194.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/4_Nachklang/lc5058194.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/5_Agnes/lc5087729.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/5_Agnes/lc5087729.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/6_Eine_gute,_gute_Nacht/lc4926375.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/6_Eine_gute,_gute_Nacht/lc4926375.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/7_Mein_wundes_Herz/lc5058636.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/7_Mein_wundes_Herz/lc5058636.mxl"
},
{
"in": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/8_Dein_blaues_Auge/lc5058657.mscx",
"out": "../scores/Brahms,_Johannes/8_Lieder_und_Ges\u00e4nge,_Op.59/8_Dein_blaues_Auge/lc5058657.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/1_Wie_rafft_ich_mich_auf_in_der_Nacht/lc5069058.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/1_Wie_rafft_ich_mich_auf_in_der_Nacht/lc5069058.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/2_Nicht_mehr_zu_dir_zu_gehen/lc5846184.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/2_Nicht_mehr_zu_dir_zu_gehen/lc5846184.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/3_Ich_schleich_umher_betr\u00fcbt/lc5069066.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/3_Ich_schleich_umher_betr\u00fcbt/lc5069066.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/4_Der_Strom,_der_neben_mir_verrauschte/lc5069048.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/4_Der_Strom,_der_neben_mir_verrauschte/lc5069048.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/5_Wehe,_so_willst_du_mich_wieder/lc5846139.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/5_Wehe,_so_willst_du_mich_wieder/lc5846139.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/6_Du_sprichst,_dass_ich_mich_t\u00e4uschte/lc5098641.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/6_Du_sprichst,_dass_ich_mich_t\u00e4uschte/lc5098641.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/7_Bitteres_zu_sagen_denkst_du/lc5033089.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/7_Bitteres_zu_sagen_denkst_du/lc5033089.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/8_So_stehn_wir,_ich_und_meine_Weide/lc5098645.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/8_So_stehn_wir,_ich_und_meine_Weide/lc5098645.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/9_Wie_bist_du,_meine_K\u00f6nigin/lc5846100.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.32/9_Wie_bist_du,_meine_K\u00f6nigin/lc5846100.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/1_Fr\u00fchlingstrost/lc5098659.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/1_Fr\u00fchlingstrost/lc5098659.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/2_Erinnerung/lc5098657.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/2_Erinnerung/lc5098657.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/3_An_ein_Bild/lc5925389.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/3_An_ein_Bild/lc5925389.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/4_An_die_Tauben/lc5033075.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/4_An_die_Tauben/lc5033075.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/5_Junge_Lieder_I/lc5934726.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/5_Junge_Lieder_I/lc5934726.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/6_Junge_Lieder_II/lc5098728.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/6_Junge_Lieder_II/lc5098728.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/7_Heimweh_I/lc5936324.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/7_Heimweh_I/lc5936324.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/8_Heimweh_II/lc5937814.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/8_Heimweh_II/lc5937814.mxl"
},
{
"in": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/9_Heimweh_III/lc5940230.mscx",
"out": "../scores/Brahms,_Johannes/9_Lieder_und_Ges\u00e4nge,_Op.63/9_Heimweh_III/lc5940230.mxl"
},
{
"in": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/2_Marias_Kirchgang/lc8708253.mscx",
"out": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/2_Marias_Kirchgang/lc8708253.mxl"
},
{
"in": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/3_Marias_Wallfahrt/lc8708688.mscx",
"out": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/3_Marias_Wallfahrt/lc8708688.mxl"
},
{
"in": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/4_Der_J\u00e4ger/lc8712405.mscx",
"out": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/4_Der_J\u00e4ger/lc8712405.mxl"
},
{
"in": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/5_Ruf_zur_Maria/lc8712648.mscx",
"out": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/5_Ruf_zur_Maria/lc8712648.mxl"
},
{
"in": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/6_Magdalena/lc8702982.mscx",
"out": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/6_Magdalena/lc8702982.mxl"
},
{
"in": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/7_Marias_Lob/lc8718660.mscx",
"out": "../scores/Brahms,_Johannes/Marienlieder,_Op.22/7_Marias_Lob/lc8718660.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/\u2019Tis_but_a_Week,_H.146/lc6451773.mscx",
"out": "../scores/Bridge,_Frank/_/\u2019Tis_but_a_Week,_H.146/lc6451773.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/Adoration,_H.57/lc6451405.mscx",
"out": "../scores/Bridge,_Frank/_/Adoration,_H.57/lc6451405.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/Come_to_Me_in_my_Dreams,_H.71/lc6474919.mscx",
"out": "../scores/Bridge,_Frank/_/Come_to_Me_in_my_Dreams,_H.71/lc6474919.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/Fair_Daffodils,_H.51/lc6257518.mscx",
"out": "../scores/Bridge,_Frank/_/Fair_Daffodils,_H.51/lc6257518.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/Love_went_a-riding,_H.114/lc6476797.mscx",
"out": "../scores/Bridge,_Frank/_/Love_went_a-riding,_H.114/lc6476797.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/So_Perverse,_H.61/lc6322601.mscx",
"out": "../scores/Bridge,_Frank/_/So_Perverse,_H.61/lc6322601.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/The_Last_Invocation,_H.136/lc6478017.mscx",
"out": "../scores/Bridge,_Frank/_/The_Last_Invocation,_H.136/lc6478017.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/The_Violets_Blue,_H.69/lc6451818.mscx",
"out": "../scores/Bridge,_Frank/_/The_Violets_Blue,_H.69/lc6451818.mxl"
},
{
"in": "../scores/Bridge,_Frank/_/Thy_Hand_in_Mine,_H.124/lc6477819.mscx",
"out": "../scores/Bridge,_Frank/_/Thy_Hand_in_Mine,_H.124/lc6477819.mxl"
},
{
"in": "../scores/Browne,_Augusta/_/Forever_Thine/lc6588872.mscx",
"out": "../scores/Browne,_Augusta/_/Forever_Thine/lc6588872.mxl"
},
{
"in": "../scores/Browne,_Augusta/_/The_Reply_of_the_Messenger_Bird/lc6588799.mscx",
"out": "../scores/Browne,_Augusta/_/The_Reply_of_the_Messenger_Bird/lc6588799.mxl"
},
{
"in": "../scores/Browne,_Augusta/_/The_Song_of_the_Skylark/lc6589315.mscx",
"out": "../scores/Browne,_Augusta/_/The_Song_of_the_Skylark/lc6589315.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/_/Ethiopia_Saluting_the_Colors/lc6565727.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/_/Ethiopia_Saluting_the_Colors/lc6565727.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/_/Go_down,_Moses/lc6351349.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/_/Go_down,_Moses/lc6351349.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/_/Nobody_Knows_de_Trouble_I\u2019ve_Seen/lc6753259.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/_/Nobody_Knows_de_Trouble_I\u2019ve_Seen/lc6753259.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/1_Worth_While/lc6518082.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/1_Worth_While/lc6518082.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/2_The_Jungle_Flower/lc6518134.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/2_The_Jungle_Flower/lc6518134.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/3_Kashmiri_Song/lc6518141.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/3_Kashmiri_Song/lc6518141.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/4_Among_the_Fuchsias/lc6471377.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/4_Among_the_Fuchsias/lc6471377.mxl"
},
{
"in": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/5_Till_I_Wake/lc6471199.mscx",
"out": "../scores/Burleigh,_Harry_Thacker/5_Songs_of_Laurence_Hope/5_Till_I_Wake/lc6471199.mxl"
},
{
"in": "../scores/Butterworth,_George/_/Love_blows_as_the_wind_blows/lc6469541.mscx",
"out": "../scores/Butterworth,_George/_/Love_blows_as_the_wind_blows/lc6469541.mxl"
},
{
"in": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/1_Loveliest_of_trees,_the_Cherry_now/lc6214840.mscx",
"out": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/1_Loveliest_of_trees,_the_Cherry_now/lc6214840.mxl"
},
{
"in": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/2_When_I_was_one_and_twenty/lc6214844.mscx",
"out": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/2_When_I_was_one_and_twenty/lc6214844.mxl"
},
{
"in": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/3_Look_not_in_my_eyes/lc6214845.mscx",
"out": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/3_Look_not_in_my_eyes/lc6214845.mxl"
},
{
"in": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/4_Think_no_more,_lad/lc6214846.mscx",
"out": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/4_Think_no_more,_lad/lc6214846.mxl"
},
{
"in": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/5_The_lads_in_their_hundreds/lc6214847.mscx",
"out": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/5_The_lads_in_their_hundreds/lc6214847.mxl"
},
{
"in": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/6_Is_my_team_ploughing/lc6214848.mscx",
"out": "../scores/Butterworth,_George/6_Songs_from_A_Shropshire_Lad/6_Is_my_team_ploughing/lc6214848.mxl"
},
{
"in": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/1_Bredon_Hill/lc6377942.mscx",
"out": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/1_Bredon_Hill/lc6377942.mxl"
},
{
"in": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/2_Oh_Fair_Enough_are_Sky_and_Plain/lc6378337.mscx",
"out": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/2_Oh_Fair_Enough_are_Sky_and_Plain/lc6378337.mxl"
},
{
"in": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/3_When_the_Lad_for_Longing_Sighs/lc6378373.mscx",
"out": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/3_When_the_Lad_for_Longing_Sighs/lc6378373.mxl"
},
{
"in": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/4_On_the_Idle_Hill_of_Summer/lc6379527.mscx",
"out": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/4_On_the_Idle_Hill_of_Summer/lc6379527.mxl"
},
{
"in": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/5_With_Rue_my_Heart_is_Laden/lc6379750.mscx",
"out": "../scores/Butterworth,_George/Bredon_Hill_and_Other_Songs/5_With_Rue_my_Heart_is_Laden/lc6379750.mxl"
},
{
"in": "../scores/Cellier,_Alfred/_/Oh!_Woman,_Sweet_Woman/lc6480111.mscx",
"out": "../scores/Cellier,_Alfred/_/Oh!_Woman,_Sweet_Woman/lc6480111.mxl"
},
{
"in": "../scores/Chabrier,_Emmanuel/_/Ballade_des_gros_dindons/lc6587611.mscx",
"out": "../scores/Chabrier,_Emmanuel/_/Ballade_des_gros_dindons/lc6587611.mxl"
},
{
"in": "../scores/Chabrier,_Emmanuel/_/Chanson_pour_Jeanne/lc6497657.mscx",
"out": "../scores/Chabrier,_Emmanuel/_/Chanson_pour_Jeanne/lc6497657.mxl"
},
{
"in": "../scores/Chabrier,_Emmanuel/_/Villanelle_des_petits_canards/lc5077917.mscx",
"out": "../scores/Chabrier,_Emmanuel/_/Villanelle_des_petits_canards/lc5077917.mxl"
},
{
"in": "../scores/Chaminade,_C\u00e9cile/_/Alleluia/lc6260992.mscx",
"out": "../scores/Chaminade,_C\u00e9cile/_/Alleluia/lc6260992.mxl"
},
{
"in": "../scores/Chaminade,_C\u00e9cile/_/Amertume/lc6261036.mscx",
"out": "../scores/Chaminade,_C\u00e9cile/_/Amertume/lc6261036.mxl"
},
{
"in": "../scores/Chaminade,_C\u00e9cile/_/Amoroso/lc4999292.mscx",
"out": "../scores/Chaminade,_C\u00e9cile/_/Amoroso/lc4999292.mxl"
},
{
"in": "../scores/Chaminade,_C\u00e9cile/_/Amour_d\u2019automne/lc4999304.mscx",
"out": "../scores/Chaminade,_C\u00e9cile/_/Amour_d\u2019automne/lc4999304.mxl"