-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdescriptor.xml
12057 lines (12057 loc) · 555 KB
/
descriptor.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--The Universal Instrumentation Code (UIC) by Peter Grimshaw of BTM Innovation Pty Ltd (https://uic.btmi.au) is licensed under a Creative Commons Attribution 3.0 Unported License. http://creativecommons.org/licenses/by/3.0/deed.en_US-->
<result>
<UIC>
<DescriptorID>79</DescriptorID>
<DescriptorName>Solo</DescriptorName>
<DescriptorShort>Solo</DescriptorShort>
<DescriptorNameDE>Solo</DescriptorNameDE>
<DescriptorShortDE>Solo</DescriptorShortDE>
<DescriptorNameFR>Solo</DescriptorNameFR>
<DescriptorShortFR>Solo</DescriptorShortFR>
<DescriptorNameIT>Solo</DescriptorNameIT>
<DescriptorShortIT>Solo</DescriptorShortIT>
<DescriptorNameES>Solo</DescriptorNameES>
<DescriptorShortES>Solo</DescriptorShortES>
<DescriptorNameJA>ソロ</DescriptorNameJA>
<DescriptorShortJA>ソロ</DescriptorShortJA>
<DescriptorNameKO>독주</DescriptorNameKO>
<DescriptorShortKO>독주</DescriptorShortKO>
<DescriptorNamePL>solo</DescriptorNamePL>
<DescriptorShortPL>solo</DescriptorShortPL>
<DescriptorNamePT>Solo</DescriptorNamePT>
<DescriptorShortPT>Solo</DescriptorShortPT>
<DescriptorNameRU>Соло</DescriptorNameRU>
<DescriptorShortRU>Соло</DescriptorShortRU>
<DescriptorNameZH>独奏</DescriptorNameZH>
<DescriptorShortZH>独奏</DescriptorShortZH>
<DescriptorOrder>1</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>95</DescriptorID>
<DescriptorName>Principal</DescriptorName>
<DescriptorShort>Princpl</DescriptorShort>
<DescriptorNameDE>Stimmführer(in)</DescriptorNameDE>
<DescriptorShortDE>StmFühr</DescriptorShortDE>
<DescriptorNameFR>Principal</DescriptorNameFR>
<DescriptorShortFR>Principal</DescriptorShortFR>
<DescriptorNameIT>Principale</DescriptorNameIT>
<DescriptorShortIT>Principale</DescriptorShortIT>
<DescriptorNameES>Principal</DescriptorNameES>
<DescriptorShortES>Principal</DescriptorShortES>
<DescriptorNameJA>首席</DescriptorNameJA>
<DescriptorShortJA>首席</DescriptorShortJA>
<DescriptorNameKO>수석</DescriptorNameKO>
<DescriptorShortKO>수석</DescriptorShortKO>
<DescriptorNamePL>principale</DescriptorNamePL>
<DescriptorShortPL>principale</DescriptorShortPL>
<DescriptorNamePT>Principal</DescriptorNamePT>
<DescriptorShortPT>Principal</DescriptorShortPT>
<DescriptorNameRU>Концертмейстер группы</DescriptorNameRU>
<DescriptorShortRU>Концертмей</DescriptorShortRU>
<DescriptorNameZH>首席/主角</DescriptorNameZH>
<DescriptorShortZH>首席/主角</DescriptorShortZH>
<DescriptorOrder>2</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>151</DescriptorID>
<DescriptorName>Leader</DescriptorName>
<DescriptorShort>Leader</DescriptorShort>
<DescriptorNameDE>Leader</DescriptorNameDE>
<DescriptorShortDE>Leader</DescriptorShortDE>
<DescriptorNameFR>Leader</DescriptorNameFR>
<DescriptorShortFR>Leader</DescriptorShortFR>
<DescriptorNameIT>Conduttore</DescriptorNameIT>
<DescriptorShortIT>Conduttore</DescriptorShortIT>
<DescriptorNameES>Concertino</DescriptorNameES>
<DescriptorShortES>Concertino</DescriptorShortES>
<DescriptorNameJA>リーダー</DescriptorNameJA>
<DescriptorShortJA>リーダー</DescriptorShortJA>
<DescriptorNameKO>리더</DescriptorNameKO>
<DescriptorShortKO>리더</DescriptorShortKO>
<DescriptorNamePL>Leader</DescriptorNamePL>
<DescriptorShortPL>Leader</DescriptorShortPL>
<DescriptorNamePT>Concertino</DescriptorNamePT>
<DescriptorShortPT>Concertino</DescriptorShortPT>
<DescriptorNameRU>Leader</DescriptorNameRU>
<DescriptorShortRU>Leader</DescriptorShortRU>
<DescriptorNameZH>领导</DescriptorNameZH>
<DescriptorShortZH>领导</DescriptorShortZH>
<DescriptorOrder>3</DescriptorOrder>
<DescriptorAdded>2014-05-11T04:42:02.74+00:00</DescriptorAdded>
<DescriptorEdited>2014-05-11T04:42:02.74+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>96</DescriptorID>
<DescriptorName>Junior</DescriptorName>
<DescriptorShort>Jnr</DescriptorShort>
<DescriptorNameDE>Junior</DescriptorNameDE>
<DescriptorShortDE>Jnr</DescriptorShortDE>
<DescriptorNameFR>Junior</DescriptorNameFR>
<DescriptorShortFR>Junior</DescriptorShortFR>
<DescriptorNameIT>Junior</DescriptorNameIT>
<DescriptorShortIT>Junior</DescriptorShortIT>
<DescriptorNameES>Junior</DescriptorNameES>
<DescriptorShortES>Junior</DescriptorShortES>
<DescriptorNameJA>ジュニア</DescriptorNameJA>
<DescriptorShortJA>ジュニア</DescriptorShortJA>
<DescriptorNameKO>주니어</DescriptorNameKO>
<DescriptorShortKO>주니어</DescriptorShortKO>
<DescriptorNamePL>młodzieżowy</DescriptorNamePL>
<DescriptorShortPL>młodzież</DescriptorShortPL>
<DescriptorNamePT>Júnior</DescriptorNamePT>
<DescriptorShortPT>Júnior</DescriptorShortPT>
<DescriptorNameRU>Junior</DescriptorNameRU>
<DescriptorShortRU>Junior</DescriptorShortRU>
<DescriptorNameZH>初级</DescriptorNameZH>
<DescriptorShortZH>初级</DescriptorShortZH>
<DescriptorOrder>5</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>1</DescriptorID>
<DescriptorName>Low</DescriptorName>
<DescriptorShort>Low</DescriptorShort>
<DescriptorNameDE>Tief</DescriptorNameDE>
<DescriptorShortDE>Tief</DescriptorShortDE>
<DescriptorNameFR>Low</DescriptorNameFR>
<DescriptorShortFR>Low</DescriptorShortFR>
<DescriptorNameIT>Basso</DescriptorNameIT>
<DescriptorShortIT>Basso</DescriptorShortIT>
<DescriptorNameES>Bajo/a</DescriptorNameES>
<DescriptorShortES>Bajo</DescriptorShortES>
<DescriptorNameJA>低</DescriptorNameJA>
<DescriptorShortJA>低</DescriptorShortJA>
<DescriptorNameKO>낮은</DescriptorNameKO>
<DescriptorShortKO>낮은</DescriptorShortKO>
<DescriptorNamePL>niski</DescriptorNamePL>
<DescriptorShortPL>niski</DescriptorShortPL>
<DescriptorNamePT>Baixo</DescriptorNamePT>
<DescriptorShortPT>Baixo</DescriptorShortPT>
<DescriptorNameRU>Низкий</DescriptorNameRU>
<DescriptorShortRU>Низкий</DescriptorShortRU>
<DescriptorNameZH>低</DescriptorNameZH>
<DescriptorShortZH>低</DescriptorShortZH>
<DescriptorOrder>10</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>2</DescriptorID>
<DescriptorName>Medium</DescriptorName>
<DescriptorShort>Med</DescriptorShort>
<DescriptorNameDE>mittel</DescriptorNameDE>
<DescriptorShortDE>mittel</DescriptorShortDE>
<DescriptorNameFR>Moyen</DescriptorNameFR>
<DescriptorShortFR>Moyen</DescriptorShortFR>
<DescriptorNameIT>Medio</DescriptorNameIT>
<DescriptorShortIT>Medio</DescriptorShortIT>
<DescriptorNameES>Medio/a</DescriptorNameES>
<DescriptorShortES>Medio</DescriptorShortES>
<DescriptorNameJA>中</DescriptorNameJA>
<DescriptorShortJA>中</DescriptorShortJA>
<DescriptorNameKO>중간</DescriptorNameKO>
<DescriptorShortKO>중간</DescriptorShortKO>
<DescriptorNamePL>średni</DescriptorNamePL>
<DescriptorShortPL>średni</DescriptorShortPL>
<DescriptorNamePT>Médio</DescriptorNamePT>
<DescriptorShortPT>Médio</DescriptorShortPT>
<DescriptorNameRU>Средний</DescriptorNameRU>
<DescriptorShortRU>Средний</DescriptorShortRU>
<DescriptorNameZH>中</DescriptorNameZH>
<DescriptorShortZH>中</DescriptorShortZH>
<DescriptorOrder>13</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>3</DescriptorID>
<DescriptorName>High</DescriptorName>
<DescriptorShort>High</DescriptorShort>
<DescriptorNameDE>Hoch</DescriptorNameDE>
<DescriptorShortDE>Hoch</DescriptorShortDE>
<DescriptorNameFR>High</DescriptorNameFR>
<DescriptorShortFR>High</DescriptorShortFR>
<DescriptorNameIT>Alto</DescriptorNameIT>
<DescriptorShortIT>A</DescriptorShortIT>
<DescriptorNameES>Alto/a</DescriptorNameES>
<DescriptorShortES>Alt.</DescriptorShortES>
<DescriptorNameJA>高</DescriptorNameJA>
<DescriptorShortJA>高</DescriptorShortJA>
<DescriptorNameKO>높은</DescriptorNameKO>
<DescriptorShortKO>높은</DescriptorShortKO>
<DescriptorNamePL>wysoki</DescriptorNamePL>
<DescriptorShortPL>wysoki</DescriptorShortPL>
<DescriptorNamePT>Alto</DescriptorNamePT>
<DescriptorShortPT>Alto</DescriptorShortPT>
<DescriptorNameRU>Высокий</DescriptorNameRU>
<DescriptorShortRU>Высокий</DescriptorShortRU>
<DescriptorNameZH>高</DescriptorNameZH>
<DescriptorShortZH>高</DescriptorShortZH>
<DescriptorOrder>14</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>4</DescriptorID>
<DescriptorName>Contra</DescriptorName>
<DescriptorShort>C</DescriptorShort>
<DescriptorNameDE>Kontra</DescriptorNameDE>
<DescriptorShortDE>Kontra</DescriptorShortDE>
<DescriptorNameFR>Contra</DescriptorNameFR>
<DescriptorShortFR>Contra</DescriptorShortFR>
<DescriptorNameIT>Contra</DescriptorNameIT>
<DescriptorShortIT>Contra</DescriptorShortIT>
<DescriptorNameES>Contra</DescriptorNameES>
<DescriptorShortES>Contra</DescriptorShortES>
<DescriptorNameJA>コントラ</DescriptorNameJA>
<DescriptorShortJA>コントラ</DescriptorShortJA>
<DescriptorNameKO>콘트라</DescriptorNameKO>
<DescriptorShortKO>콘트라</DescriptorShortKO>
<DescriptorNamePL>contra</DescriptorNamePL>
<DescriptorShortPL>contra</DescriptorShortPL>
<DescriptorNamePT>Contra</DescriptorNamePT>
<DescriptorShortPT>Contra</DescriptorShortPT>
<DescriptorNameRU>Контра</DescriptorNameRU>
<DescriptorShortRU>Контра</DescriptorShortRU>
<DescriptorNameZH>对立</DescriptorNameZH>
<DescriptorShortZH>对立</DescriptorShortZH>
<DescriptorOrder>15</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>17</DescriptorID>
<DescriptorName>(Ab)</DescriptorName>
<DescriptorShort>(Ab)</DescriptorShort>
<DescriptorNameDE>(Ab)</DescriptorNameDE>
<DescriptorShortDE>(Ab)</DescriptorShortDE>
<DescriptorNameFR>(Ab)</DescriptorNameFR>
<DescriptorShortFR>(Ab)</DescriptorShortFR>
<DescriptorNameIT>(Ab)</DescriptorNameIT>
<DescriptorShortIT>(Ab)</DescriptorShortIT>
<DescriptorNameES>(Ab)</DescriptorNameES>
<DescriptorShortES>(Ab)</DescriptorShortES>
<DescriptorNameJA>(Ab)</DescriptorNameJA>
<DescriptorShortJA>(Ab)</DescriptorShortJA>
<DescriptorNameKO>(Ab)</DescriptorNameKO>
<DescriptorShortKO>(Ab)</DescriptorShortKO>
<DescriptorNamePL>(Ab)</DescriptorNamePL>
<DescriptorShortPL>(Ab)</DescriptorShortPL>
<DescriptorNamePT>(Ab)</DescriptorNamePT>
<DescriptorShortPT>(Ab)</DescriptorShortPT>
<DescriptorNameRU>(Ab)</DescriptorNameRU>
<DescriptorShortRU>(Ab)</DescriptorShortRU>
<DescriptorNameZH>降A</DescriptorNameZH>
<DescriptorShortZH>降A</DescriptorShortZH>
<DescriptorOrder>20</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>18</DescriptorID>
<DescriptorName>(A)</DescriptorName>
<DescriptorShort>(A)</DescriptorShort>
<DescriptorNameDE>(A)</DescriptorNameDE>
<DescriptorShortDE>(A)</DescriptorShortDE>
<DescriptorNameFR>(A)</DescriptorNameFR>
<DescriptorShortFR>(A)</DescriptorShortFR>
<DescriptorNameIT>(A)</DescriptorNameIT>
<DescriptorShortIT>(A)</DescriptorShortIT>
<DescriptorNameES>(A)</DescriptorNameES>
<DescriptorShortES>(A)</DescriptorShortES>
<DescriptorNameJA>(A)</DescriptorNameJA>
<DescriptorShortJA>(A)</DescriptorShortJA>
<DescriptorNameKO>(A)</DescriptorNameKO>
<DescriptorShortKO>(A)</DescriptorShortKO>
<DescriptorNamePL>(A)</DescriptorNamePL>
<DescriptorShortPL>(A)</DescriptorShortPL>
<DescriptorNamePT>(A)</DescriptorNamePT>
<DescriptorShortPT>(A)</DescriptorShortPT>
<DescriptorNameRU>(A)</DescriptorNameRU>
<DescriptorShortRU>(A)</DescriptorShortRU>
<DescriptorNameZH>A</DescriptorNameZH>
<DescriptorShortZH>A</DescriptorShortZH>
<DescriptorOrder>23</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>202</DescriptorID>
<DescriptorName>(A/B)</DescriptorName>
<DescriptorShort>(A/B)</DescriptorShort>
<DescriptorNameDE>(A/B)</DescriptorNameDE>
<DescriptorShortDE>(A/B)</DescriptorShortDE>
<DescriptorNameFR>(A/B)</DescriptorNameFR>
<DescriptorShortFR>(A/B)</DescriptorShortFR>
<DescriptorNameIT>(A/B)</DescriptorNameIT>
<DescriptorShortIT>(A/B)</DescriptorShortIT>
<DescriptorNameES>(A/B)</DescriptorNameES>
<DescriptorShortES>(A/B)</DescriptorShortES>
<DescriptorNameJA>(A/B)</DescriptorNameJA>
<DescriptorShortJA>(A/B)</DescriptorShortJA>
<DescriptorNameKO>(A/B)</DescriptorNameKO>
<DescriptorShortKO>(A/B)</DescriptorShortKO>
<DescriptorNamePL>(A/B)</DescriptorNamePL>
<DescriptorShortPL>(A/B)</DescriptorShortPL>
<DescriptorNamePT>(A/B)</DescriptorNamePT>
<DescriptorShortPT>(A/B)</DescriptorShortPT>
<DescriptorNameRU>(A/B)</DescriptorNameRU>
<DescriptorShortRU>(A/B)</DescriptorShortRU>
<DescriptorNameZH>A/B</DescriptorNameZH>
<DescriptorShortZH>A/B</DescriptorShortZH>
<DescriptorOrder>24</DescriptorOrder>
<DescriptorAdded>2016-02-11T11:46:32.88+00:00</DescriptorAdded>
<DescriptorEdited>2016-02-11T11:59:24.423+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>19</DescriptorID>
<DescriptorName>(A#)</DescriptorName>
<DescriptorShort>(A#)</DescriptorShort>
<DescriptorNameDE>(A#)</DescriptorNameDE>
<DescriptorShortDE>(A#)</DescriptorShortDE>
<DescriptorNameFR>(A#)</DescriptorNameFR>
<DescriptorShortFR>(A#)</DescriptorShortFR>
<DescriptorNameIT>(A#)</DescriptorNameIT>
<DescriptorShortIT>(A#)</DescriptorShortIT>
<DescriptorNameES>(A#)</DescriptorNameES>
<DescriptorShortES>(A#)</DescriptorShortES>
<DescriptorNameJA>(A#)</DescriptorNameJA>
<DescriptorShortJA>(A#)</DescriptorShortJA>
<DescriptorNameKO>(A#)</DescriptorNameKO>
<DescriptorShortKO>(A#)</DescriptorShortKO>
<DescriptorNamePL>(A#)</DescriptorNamePL>
<DescriptorShortPL>(A#)</DescriptorShortPL>
<DescriptorNamePT>(A#)</DescriptorNamePT>
<DescriptorShortPT>(A#)</DescriptorShortPT>
<DescriptorNameRU>(A#)</DescriptorNameRU>
<DescriptorShortRU>(A#)</DescriptorShortRU>
<DescriptorNameZH>升A</DescriptorNameZH>
<DescriptorShortZH>升A</DescriptorShortZH>
<DescriptorOrder>28</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>20</DescriptorID>
<DescriptorName>(Bb)</DescriptorName>
<DescriptorShort>(Bb)</DescriptorShort>
<DescriptorNameDE>(Bb)</DescriptorNameDE>
<DescriptorShortDE>(Bb)</DescriptorShortDE>
<DescriptorNameFR>(Bb)</DescriptorNameFR>
<DescriptorShortFR>(Bb)</DescriptorShortFR>
<DescriptorNameIT>(Bb)</DescriptorNameIT>
<DescriptorShortIT>(Bb)</DescriptorShortIT>
<DescriptorNameES>(Bb)</DescriptorNameES>
<DescriptorShortES>(Bb)</DescriptorShortES>
<DescriptorNameJA>(Bb)</DescriptorNameJA>
<DescriptorShortJA>(Bb)</DescriptorShortJA>
<DescriptorNameKO>(Bb)</DescriptorNameKO>
<DescriptorShortKO>(Bb)</DescriptorShortKO>
<DescriptorNamePL>(Bb)</DescriptorNamePL>
<DescriptorShortPL>(Bb)</DescriptorShortPL>
<DescriptorNamePT>(Bb)</DescriptorNamePT>
<DescriptorShortPT>(Bb)</DescriptorShortPT>
<DescriptorNameRU>(Bb)</DescriptorNameRU>
<DescriptorShortRU>(Bb)</DescriptorShortRU>
<DescriptorNameZH>降B</DescriptorNameZH>
<DescriptorShortZH>降B</DescriptorShortZH>
<DescriptorOrder>29</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>21</DescriptorID>
<DescriptorName>(B)</DescriptorName>
<DescriptorShort>(B)</DescriptorShort>
<DescriptorNameDE>(B)</DescriptorNameDE>
<DescriptorShortDE>(B)</DescriptorShortDE>
<DescriptorNameFR>(B)</DescriptorNameFR>
<DescriptorShortFR>(B)</DescriptorShortFR>
<DescriptorNameIT>(B)</DescriptorNameIT>
<DescriptorShortIT>(B)</DescriptorShortIT>
<DescriptorNameES>(B)</DescriptorNameES>
<DescriptorShortES>(B)</DescriptorShortES>
<DescriptorNameJA>(B)</DescriptorNameJA>
<DescriptorShortJA>(B)</DescriptorShortJA>
<DescriptorNameKO>(B)</DescriptorNameKO>
<DescriptorShortKO>(B)</DescriptorShortKO>
<DescriptorNamePL>(B)</DescriptorNamePL>
<DescriptorShortPL>(B)</DescriptorShortPL>
<DescriptorNamePT>(B)</DescriptorNamePT>
<DescriptorShortPT>(B)</DescriptorShortPT>
<DescriptorNameRU>(B)</DescriptorNameRU>
<DescriptorShortRU>(B)</DescriptorShortRU>
<DescriptorNameZH>B</DescriptorNameZH>
<DescriptorShortZH>B</DescriptorShortZH>
<DescriptorOrder>30</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>5</DescriptorID>
<DescriptorName>(C)</DescriptorName>
<DescriptorShort>(C)</DescriptorShort>
<DescriptorNameDE>(C)</DescriptorNameDE>
<DescriptorShortDE>(C)</DescriptorShortDE>
<DescriptorNameFR>(C)</DescriptorNameFR>
<DescriptorShortFR>(C)</DescriptorShortFR>
<DescriptorNameIT>(C)</DescriptorNameIT>
<DescriptorShortIT>(C)</DescriptorShortIT>
<DescriptorNameES>(C)</DescriptorNameES>
<DescriptorShortES>(C)</DescriptorShortES>
<DescriptorNameJA>(C)</DescriptorNameJA>
<DescriptorShortJA>(C)</DescriptorShortJA>
<DescriptorNameKO>(C)</DescriptorNameKO>
<DescriptorShortKO>(C)</DescriptorShortKO>
<DescriptorNamePL>(C)</DescriptorNamePL>
<DescriptorShortPL>(C)</DescriptorShortPL>
<DescriptorNamePT>(C)</DescriptorNamePT>
<DescriptorShortPT>(C)</DescriptorShortPT>
<DescriptorNameRU>(C)</DescriptorNameRU>
<DescriptorShortRU>(C)</DescriptorShortRU>
<DescriptorNameZH>C</DescriptorNameZH>
<DescriptorShortZH>C</DescriptorShortZH>
<DescriptorOrder>35</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>137</DescriptorID>
<DescriptorName>(C&D)</DescriptorName>
<DescriptorShort>(C&D)</DescriptorShort>
<DescriptorNameDE>(C&D)</DescriptorNameDE>
<DescriptorShortDE>(C&D)</DescriptorShortDE>
<DescriptorNameFR>(C&D)</DescriptorNameFR>
<DescriptorShortFR>(C&D)</DescriptorShortFR>
<DescriptorNameIT>(C&D)</DescriptorNameIT>
<DescriptorShortIT>(C&D)</DescriptorShortIT>
<DescriptorNameES>(C&D)</DescriptorNameES>
<DescriptorShortES>(C&D)</DescriptorShortES>
<DescriptorNameJA>(C&D)</DescriptorNameJA>
<DescriptorShortJA>(C&D)</DescriptorShortJA>
<DescriptorNameKO>(C&D)</DescriptorNameKO>
<DescriptorShortKO>(C&D)</DescriptorShortKO>
<DescriptorNamePL>(C&D)</DescriptorNamePL>
<DescriptorShortPL>(C&D)</DescriptorShortPL>
<DescriptorNamePT>(C&D)</DescriptorNamePT>
<DescriptorShortPT>(C&D)</DescriptorShortPT>
<DescriptorNameRU>(C&D)</DescriptorNameRU>
<DescriptorShortRU>(C&D)</DescriptorShortRU>
<DescriptorNameZH>C 和 D</DescriptorNameZH>
<DescriptorShortZH>C 和 D</DescriptorShortZH>
<DescriptorOrder>36</DescriptorOrder>
<DescriptorAdded>2014-04-15T06:44:37.223+00:00</DescriptorAdded>
<DescriptorEdited>2014-04-15T06:44:37.223+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>6</DescriptorID>
<DescriptorName>(C#)</DescriptorName>
<DescriptorShort>(C#)</DescriptorShort>
<DescriptorNameDE>(C#)</DescriptorNameDE>
<DescriptorShortDE>(C#)</DescriptorShortDE>
<DescriptorNameFR>(C#)</DescriptorNameFR>
<DescriptorShortFR>(C#)</DescriptorShortFR>
<DescriptorNameIT>(C#)</DescriptorNameIT>
<DescriptorShortIT>(C#)</DescriptorShortIT>
<DescriptorNameES>(C#)</DescriptorNameES>
<DescriptorShortES>(C#)</DescriptorShortES>
<DescriptorNameJA>(C#)</DescriptorNameJA>
<DescriptorShortJA>(C#)</DescriptorShortJA>
<DescriptorNameKO>(C#)</DescriptorNameKO>
<DescriptorShortKO>(C#)</DescriptorShortKO>
<DescriptorNamePL>(C#)</DescriptorNamePL>
<DescriptorShortPL>(C#)</DescriptorShortPL>
<DescriptorNamePT>(C#)</DescriptorNamePT>
<DescriptorShortPT>(C#)</DescriptorShortPT>
<DescriptorNameRU>(C#)</DescriptorNameRU>
<DescriptorShortRU>(C#)</DescriptorShortRU>
<DescriptorNameZH>升C</DescriptorNameZH>
<DescriptorShortZH>升C</DescriptorShortZH>
<DescriptorOrder>38</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>7</DescriptorID>
<DescriptorName>(Db)</DescriptorName>
<DescriptorShort>(Db)</DescriptorShort>
<DescriptorNameDE>(Db)</DescriptorNameDE>
<DescriptorShortDE>(Db)</DescriptorShortDE>
<DescriptorNameFR>(Db)</DescriptorNameFR>
<DescriptorShortFR>(Db)</DescriptorShortFR>
<DescriptorNameIT>(Db)</DescriptorNameIT>
<DescriptorShortIT>(Db)</DescriptorShortIT>
<DescriptorNameES>(Db)</DescriptorNameES>
<DescriptorShortES>(Db)</DescriptorShortES>
<DescriptorNameJA>(Db)</DescriptorNameJA>
<DescriptorShortJA>(Db)</DescriptorShortJA>
<DescriptorNameKO>(Db)</DescriptorNameKO>
<DescriptorShortKO>(Db)</DescriptorShortKO>
<DescriptorNamePL>(Db)</DescriptorNamePL>
<DescriptorShortPL>(Db)</DescriptorShortPL>
<DescriptorNamePT>(Db)</DescriptorNamePT>
<DescriptorShortPT>(Db)</DescriptorShortPT>
<DescriptorNameRU>(Db)</DescriptorNameRU>
<DescriptorShortRU>(Db)</DescriptorShortRU>
<DescriptorNameZH>降D</DescriptorNameZH>
<DescriptorShortZH>降D</DescriptorShortZH>
<DescriptorOrder>39</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>8</DescriptorID>
<DescriptorName>(D)</DescriptorName>
<DescriptorShort>(D)</DescriptorShort>
<DescriptorNameDE>(D)</DescriptorNameDE>
<DescriptorShortDE>(D)</DescriptorShortDE>
<DescriptorNameFR>(D)</DescriptorNameFR>
<DescriptorShortFR>(D)</DescriptorShortFR>
<DescriptorNameIT>(D)</DescriptorNameIT>
<DescriptorShortIT>(D)</DescriptorShortIT>
<DescriptorNameES>(D)</DescriptorNameES>
<DescriptorShortES>(D)</DescriptorShortES>
<DescriptorNameJA>(D)</DescriptorNameJA>
<DescriptorShortJA>(D)</DescriptorShortJA>
<DescriptorNameKO>(D)</DescriptorNameKO>
<DescriptorShortKO>(D)</DescriptorShortKO>
<DescriptorNamePL>(D)</DescriptorNamePL>
<DescriptorShortPL>(D)</DescriptorShortPL>
<DescriptorNamePT>(D)</DescriptorNamePT>
<DescriptorShortPT>(D)</DescriptorShortPT>
<DescriptorNameRU>(D)</DescriptorNameRU>
<DescriptorShortRU>(D)</DescriptorShortRU>
<DescriptorNameZH>D</DescriptorNameZH>
<DescriptorShortZH>D</DescriptorShortZH>
<DescriptorOrder>40</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>9</DescriptorID>
<DescriptorName>(D#)</DescriptorName>
<DescriptorShort>(D#)</DescriptorShort>
<DescriptorNameDE>(D#)</DescriptorNameDE>
<DescriptorShortDE>(D#)</DescriptorShortDE>
<DescriptorNameFR>(D#)</DescriptorNameFR>
<DescriptorShortFR>(D#)</DescriptorShortFR>
<DescriptorNameIT>(D#)</DescriptorNameIT>
<DescriptorShortIT>(D#)</DescriptorShortIT>
<DescriptorNameES>(D#)</DescriptorNameES>
<DescriptorShortES>(D#)</DescriptorShortES>
<DescriptorNameJA>(D#)</DescriptorNameJA>
<DescriptorShortJA>(D#)</DescriptorShortJA>
<DescriptorNameKO>(D#)</DescriptorNameKO>
<DescriptorShortKO>(D#)</DescriptorShortKO>
<DescriptorNamePL>(D#)</DescriptorNamePL>
<DescriptorShortPL>(D#)</DescriptorShortPL>
<DescriptorNamePT>(D#)</DescriptorNamePT>
<DescriptorShortPT>(D#)</DescriptorShortPT>
<DescriptorNameRU>(D#)</DescriptorNameRU>
<DescriptorShortRU>(D#)</DescriptorShortRU>
<DescriptorNameZH>升D</DescriptorNameZH>
<DescriptorShortZH>升D</DescriptorShortZH>
<DescriptorOrder>42</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>10</DescriptorID>
<DescriptorName>(Eb)</DescriptorName>
<DescriptorShort>(Eb)</DescriptorShort>
<DescriptorNameDE>(Eb)</DescriptorNameDE>
<DescriptorShortDE>(Eb)</DescriptorShortDE>
<DescriptorNameFR>(Eb)</DescriptorNameFR>
<DescriptorShortFR>(Eb)</DescriptorShortFR>
<DescriptorNameIT>(Eb)</DescriptorNameIT>
<DescriptorShortIT>(Eb)</DescriptorShortIT>
<DescriptorNameES>(Eb)</DescriptorNameES>
<DescriptorShortES>(Eb)</DescriptorShortES>
<DescriptorNameJA>(Eb)</DescriptorNameJA>
<DescriptorShortJA>(Eb)</DescriptorShortJA>
<DescriptorNameKO>(Eb)</DescriptorNameKO>
<DescriptorShortKO>(Eb)</DescriptorShortKO>
<DescriptorNamePL>(Eb)</DescriptorNamePL>
<DescriptorShortPL>(Eb)</DescriptorShortPL>
<DescriptorNamePT>(Eb)</DescriptorNamePT>
<DescriptorShortPT>(Eb)</DescriptorShortPT>
<DescriptorNameRU>(Eb)</DescriptorNameRU>
<DescriptorShortRU>(Eb)</DescriptorShortRU>
<DescriptorNameZH>降E</DescriptorNameZH>
<DescriptorShortZH>降E</DescriptorShortZH>
<DescriptorOrder>43</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>11</DescriptorID>
<DescriptorName>(E)</DescriptorName>
<DescriptorShort>(E)</DescriptorShort>
<DescriptorNameDE>(E)</DescriptorNameDE>
<DescriptorShortDE>(E)</DescriptorShortDE>
<DescriptorNameFR>(E)</DescriptorNameFR>
<DescriptorShortFR>(E)</DescriptorShortFR>
<DescriptorNameIT>(E)</DescriptorNameIT>
<DescriptorShortIT>(E)</DescriptorShortIT>
<DescriptorNameES>(E)</DescriptorNameES>
<DescriptorShortES>(E)</DescriptorShortES>
<DescriptorNameJA>(E)</DescriptorNameJA>
<DescriptorShortJA>(E)</DescriptorShortJA>
<DescriptorNameKO>(E)</DescriptorNameKO>
<DescriptorShortKO>(E)</DescriptorShortKO>
<DescriptorNamePL>(E)</DescriptorNamePL>
<DescriptorShortPL>(E)</DescriptorShortPL>
<DescriptorNamePT>(E)</DescriptorNamePT>
<DescriptorShortPT>(E)</DescriptorShortPT>
<DescriptorNameRU>(E)</DescriptorNameRU>
<DescriptorShortRU>(E)</DescriptorShortRU>
<DescriptorNameZH>E</DescriptorNameZH>
<DescriptorShortZH>E</DescriptorShortZH>
<DescriptorOrder>44</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>12</DescriptorID>
<DescriptorName>(F)</DescriptorName>
<DescriptorShort>(F)</DescriptorShort>
<DescriptorNameDE>(F)</DescriptorNameDE>
<DescriptorShortDE>(F)</DescriptorShortDE>
<DescriptorNameFR>(F)</DescriptorNameFR>
<DescriptorShortFR>(F)</DescriptorShortFR>
<DescriptorNameIT>(F)</DescriptorNameIT>
<DescriptorShortIT>(F)</DescriptorShortIT>
<DescriptorNameES>(F)</DescriptorNameES>
<DescriptorShortES>(F)</DescriptorShortES>
<DescriptorNameJA>(F)</DescriptorNameJA>
<DescriptorShortJA>(F)</DescriptorShortJA>
<DescriptorNameKO>(F)</DescriptorNameKO>
<DescriptorShortKO>(F)</DescriptorShortKO>
<DescriptorNamePL>(F)</DescriptorNamePL>
<DescriptorShortPL>(F)</DescriptorShortPL>
<DescriptorNamePT>(F)</DescriptorNamePT>
<DescriptorShortPT>(F)</DescriptorShortPT>
<DescriptorNameRU>(F)</DescriptorNameRU>
<DescriptorShortRU>(F)</DescriptorShortRU>
<DescriptorNameZH>F</DescriptorNameZH>
<DescriptorShortZH>F</DescriptorShortZH>
<DescriptorOrder>45</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>13</DescriptorID>
<DescriptorName>(F#)</DescriptorName>
<DescriptorShort>(F#)</DescriptorShort>
<DescriptorNameDE>(F#)</DescriptorNameDE>
<DescriptorShortDE>(F#)</DescriptorShortDE>
<DescriptorNameFR>(F#)</DescriptorNameFR>
<DescriptorShortFR>(F#)</DescriptorShortFR>
<DescriptorNameIT>(F#)</DescriptorNameIT>
<DescriptorShortIT>(F#)</DescriptorShortIT>
<DescriptorNameES>(F#)</DescriptorNameES>
<DescriptorShortES>(F#)</DescriptorShortES>
<DescriptorNameJA>(F#)</DescriptorNameJA>
<DescriptorShortJA>(F#)</DescriptorShortJA>
<DescriptorNameKO>(F#)</DescriptorNameKO>
<DescriptorShortKO>(F#)</DescriptorShortKO>
<DescriptorNamePL>(F#)</DescriptorNamePL>
<DescriptorShortPL>(F#)</DescriptorShortPL>
<DescriptorNamePT>(F#)</DescriptorNamePT>
<DescriptorShortPT>(F#)</DescriptorShortPT>
<DescriptorNameRU>(F#)</DescriptorNameRU>
<DescriptorShortRU>(F#)</DescriptorShortRU>
<DescriptorNameZH>升F</DescriptorNameZH>
<DescriptorShortZH>升F</DescriptorShortZH>
<DescriptorOrder>46</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>14</DescriptorID>
<DescriptorName>(Gb)</DescriptorName>
<DescriptorShort>(Gb)</DescriptorShort>
<DescriptorNameDE>(Gb)</DescriptorNameDE>
<DescriptorShortDE>(Gb)</DescriptorShortDE>
<DescriptorNameFR>(Gb)</DescriptorNameFR>
<DescriptorShortFR>(Gb)</DescriptorShortFR>
<DescriptorNameIT>(Gb)</DescriptorNameIT>
<DescriptorShortIT>(Gb)</DescriptorShortIT>
<DescriptorNameES>(Gb)</DescriptorNameES>
<DescriptorShortES>(Gb)</DescriptorShortES>
<DescriptorNameJA>(Gb)</DescriptorNameJA>
<DescriptorShortJA>(Gb)</DescriptorShortJA>
<DescriptorNameKO>(Gb)</DescriptorNameKO>
<DescriptorShortKO>(Gb)</DescriptorShortKO>
<DescriptorNamePL>(Gb)</DescriptorNamePL>
<DescriptorShortPL>(Gb)</DescriptorShortPL>
<DescriptorNamePT>(Gb)</DescriptorNamePT>
<DescriptorShortPT>(Gb)</DescriptorShortPT>
<DescriptorNameRU>(Gb)</DescriptorNameRU>
<DescriptorShortRU>(Gb)</DescriptorShortRU>
<DescriptorNameZH>降G</DescriptorNameZH>
<DescriptorShortZH>降G</DescriptorShortZH>
<DescriptorOrder>47</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>15</DescriptorID>
<DescriptorName>(G)</DescriptorName>
<DescriptorShort>(G)</DescriptorShort>
<DescriptorNameDE>(G)</DescriptorNameDE>
<DescriptorShortDE>(G)</DescriptorShortDE>
<DescriptorNameFR>(G)</DescriptorNameFR>
<DescriptorShortFR>(G)</DescriptorShortFR>
<DescriptorNameIT>(G)</DescriptorNameIT>
<DescriptorShortIT>(G)</DescriptorShortIT>
<DescriptorNameES>(G)</DescriptorNameES>
<DescriptorShortES>(G)</DescriptorShortES>
<DescriptorNameJA>(G)</DescriptorNameJA>
<DescriptorShortJA>(G)</DescriptorShortJA>
<DescriptorNameKO>(G)</DescriptorNameKO>
<DescriptorShortKO>(G)</DescriptorShortKO>
<DescriptorNamePL>(G)</DescriptorNamePL>
<DescriptorShortPL>(G)</DescriptorShortPL>
<DescriptorNamePT>(G)</DescriptorNamePT>
<DescriptorShortPT>(G)</DescriptorShortPT>
<DescriptorNameRU>(G)</DescriptorNameRU>
<DescriptorShortRU>(G)</DescriptorShortRU>
<DescriptorNameZH>G</DescriptorNameZH>
<DescriptorShortZH>G</DescriptorShortZH>
<DescriptorOrder>48</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>16</DescriptorID>
<DescriptorName>(G#)</DescriptorName>
<DescriptorShort>(G#)</DescriptorShort>
<DescriptorNameDE>(G#)</DescriptorNameDE>
<DescriptorShortDE>(G#)</DescriptorShortDE>
<DescriptorNameFR>(G#)</DescriptorNameFR>
<DescriptorShortFR>(G#)</DescriptorShortFR>
<DescriptorNameIT>(G#)</DescriptorNameIT>
<DescriptorShortIT>(G#)</DescriptorShortIT>
<DescriptorNameES>(G#)</DescriptorNameES>
<DescriptorShortES>(G#)</DescriptorShortES>
<DescriptorNameJA>(G#)</DescriptorNameJA>
<DescriptorShortJA>(G#)</DescriptorShortJA>
<DescriptorNameKO>(G#)</DescriptorNameKO>
<DescriptorShortKO>(G#)</DescriptorShortKO>
<DescriptorNamePL>(G#)</DescriptorNamePL>
<DescriptorShortPL>(G#)</DescriptorShortPL>
<DescriptorNamePT>(G#)</DescriptorNamePT>
<DescriptorShortPT>(G#)</DescriptorShortPT>
<DescriptorNameRU>(G#)</DescriptorNameRU>
<DescriptorShortRU>(G#)</DescriptorShortRU>
<DescriptorNameZH>升G</DescriptorNameZH>
<DescriptorShortZH>升G</DescriptorShortZH>
<DescriptorOrder>50</DescriptorOrder>
</UIC>
<UIC>
<DescriptorID>311</DescriptorID>
<DescriptorName>(H)</DescriptorName>
<DescriptorShort>(H)</DescriptorShort>
<DescriptorNameDE>(H)</DescriptorNameDE>
<DescriptorShortDE>(H)</DescriptorShortDE>
<DescriptorNameFR>(H)</DescriptorNameFR>
<DescriptorShortFR>(H)</DescriptorShortFR>
<DescriptorNameIT>(H)</DescriptorNameIT>
<DescriptorShortIT>(H)</DescriptorShortIT>
<DescriptorNameES>(H)</DescriptorNameES>
<DescriptorShortES>(H)</DescriptorShortES>
<DescriptorNameJA>(H)</DescriptorNameJA>
<DescriptorShortJA>(H)</DescriptorShortJA>
<DescriptorNameKO>(H)</DescriptorNameKO>
<DescriptorShortKO>(H)</DescriptorShortKO>
<DescriptorNamePL>(H)</DescriptorNamePL>
<DescriptorShortPL>(H)</DescriptorShortPL>
<DescriptorNamePT>(H)</DescriptorNamePT>
<DescriptorShortPT>(H)</DescriptorShortPT>
<DescriptorNameRU>(H)</DescriptorNameRU>
<DescriptorShortRU>(H)</DescriptorShortRU>
<DescriptorNameZH>B</DescriptorNameZH>
<DescriptorShortZH>B</DescriptorShortZH>
<DescriptorOrder>51</DescriptorOrder>
<DescriptorAdded>2018-04-27T07:28:10.413+00:00</DescriptorAdded>
<DescriptorEdited>2018-04-27T07:28:10.413+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>178</DescriptorID>
<DescriptorName>in A</DescriptorName>
<DescriptorShort>inA</DescriptorShort>
<DescriptorNameDE>in A</DescriptorNameDE>
<DescriptorShortDE>inA</DescriptorShortDE>
<DescriptorNameFR>in A</DescriptorNameFR>
<DescriptorShortFR>inA</DescriptorShortFR>
<DescriptorNameIT>in La</DescriptorNameIT>
<DescriptorShortIT>inLa</DescriptorShortIT>
<DescriptorNameES>en La & Si b</DescriptorNameES>
<DescriptorShortES>enLA</DescriptorShortES>
<DescriptorNameJA>イ</DescriptorNameJA>
<DescriptorShortJA>イ</DescriptorShortJA>
<DescriptorNameKO>in A</DescriptorNameKO>
<DescriptorShortKO>in A</DescriptorShortKO>
<DescriptorNamePL>A</DescriptorNamePL>
<DescriptorShortPL>A</DescriptorShortPL>
<DescriptorNamePT>em LA</DescriptorNamePT>
<DescriptorShortPT>em LA</DescriptorShortPT>
<DescriptorNameRU>в ля</DescriptorNameRU>
<DescriptorShortRU>в ля</DescriptorShortRU>
<DescriptorNameZH>la</DescriptorNameZH>
<DescriptorShortZH>la</DescriptorShortZH>
<DescriptorOrder>53</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:01:22.03+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:01:22.03+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>179</DescriptorID>
<DescriptorName>in A & Bb</DescriptorName>
<DescriptorShort>inA&Bb</DescriptorShort>
<DescriptorNameDE>in A & B</DescriptorNameDE>
<DescriptorShortDE>inA&B</DescriptorShortDE>
<DescriptorNameFR>in A & Bb</DescriptorNameFR>
<DescriptorShortFR>inA&Bb</DescriptorShortFR>
<DescriptorNameIT>in La & Sib</DescriptorNameIT>
<DescriptorShortIT>inLa&Sib</DescriptorShortIT>
<DescriptorNameES>en La & Si b</DescriptorNameES>
<DescriptorShortES>enLA&SIb</DescriptorShortES>
<DescriptorNameJA>イと変ロ</DescriptorNameJA>
<DescriptorShortJA>イと変ロ</DescriptorShortJA>
<DescriptorNameKO>in A & Bb</DescriptorNameKO>
<DescriptorShortKO>in A & Bb</DescriptorShortKO>
<DescriptorNamePL>A & B</DescriptorNamePL>
<DescriptorShortPL>A&B</DescriptorShortPL>
<DescriptorNamePT>em LA & SI bemol</DescriptorNamePT>
<DescriptorShortPT>em LA & SI</DescriptorShortPT>
<DescriptorNameRU>в ля и си-бемоле</DescriptorNameRU>
<DescriptorShortRU>в ля и си-</DescriptorShortRU>
<DescriptorNameZH>la 和 降si</DescriptorNameZH>
<DescriptorShortZH>la 和 降si</DescriptorShortZH>
<DescriptorOrder>54</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:02:05.033+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:02:05.033+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>281</DescriptorID>
<DescriptorName>in A & G</DescriptorName>
<DescriptorShort>inA&G</DescriptorShort>
<DescriptorNameDE>in A & G</DescriptorNameDE>
<DescriptorShortDE>inA&G</DescriptorShortDE>
<DescriptorNameFR>in A &G</DescriptorNameFR>
<DescriptorShortFR>in A &G</DescriptorShortFR>
<DescriptorNameIT>in La & Sol</DescriptorNameIT>
<DescriptorShortIT>in La & So</DescriptorShortIT>
<DescriptorNameES>en La & Sol</DescriptorNameES>
<DescriptorShortES>en La & So</DescriptorShortES>
<DescriptorNameJA>イとト</DescriptorNameJA>
<DescriptorShortJA>イとト</DescriptorShortJA>
<DescriptorNameKO>in A & G</DescriptorNameKO>
<DescriptorShortKO>in A & G</DescriptorShortKO>
<DescriptorNamePL>in A & G</DescriptorNamePL>
<DescriptorShortPL>inA&G</DescriptorShortPL>
<DescriptorNamePT>em LA & SOL</DescriptorNamePT>
<DescriptorShortPT>em LA & SO</DescriptorShortPT>
<DescriptorNameRU>в ля и соль</DescriptorNameRU>
<DescriptorShortRU>в ля и сол</DescriptorShortRU>
<DescriptorNameZH>la 和 so</DescriptorNameZH>
<DescriptorShortZH>la 和 so</DescriptorShortZH>
<DescriptorOrder>55</DescriptorOrder>
<DescriptorAdded>2018-01-24T13:00:15.773+00:00</DescriptorAdded>
<DescriptorEdited>2018-01-24T13:00:15.773+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>180</DescriptorID>
<DescriptorName>in Ab</DescriptorName>
<DescriptorShort>inAb</DescriptorShort>
<DescriptorNameDE>in As</DescriptorNameDE>
<DescriptorShortDE>inAs</DescriptorShortDE>
<DescriptorNameFR>in Ab</DescriptorNameFR>
<DescriptorShortFR>inAb</DescriptorShortFR>
<DescriptorNameIT>in Lab</DescriptorNameIT>
<DescriptorShortIT>inLab</DescriptorShortIT>
<DescriptorNameES>en La b</DescriptorNameES>
<DescriptorShortES>enLAb</DescriptorShortES>
<DescriptorNameJA>変イ</DescriptorNameJA>
<DescriptorShortJA>変イ</DescriptorShortJA>
<DescriptorNameKO>in Ab</DescriptorNameKO>
<DescriptorShortKO>in Ab</DescriptorShortKO>
<DescriptorNamePL>As</DescriptorNamePL>
<DescriptorShortPL>As</DescriptorShortPL>
<DescriptorNamePT>em LA bemol</DescriptorNamePT>
<DescriptorShortPT>em LA bemo</DescriptorShortPT>
<DescriptorNameRU>в ля-бемоле</DescriptorNameRU>
<DescriptorShortRU>в ля-бемол</DescriptorShortRU>
<DescriptorNameZH>降la</DescriptorNameZH>
<DescriptorShortZH>降la</DescriptorShortZH>
<DescriptorOrder>57</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:02:36.303+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:02:36.303+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>181</DescriptorID>
<DescriptorName>in B</DescriptorName>
<DescriptorShort>inB</DescriptorShort>
<DescriptorNameDE>in H</DescriptorNameDE>
<DescriptorShortDE>inH</DescriptorShortDE>
<DescriptorNameFR>in B</DescriptorNameFR>
<DescriptorShortFR>inB</DescriptorShortFR>
<DescriptorNameIT>in Si</DescriptorNameIT>
<DescriptorShortIT>inSi</DescriptorShortIT>
<DescriptorNameES>en Si</DescriptorNameES>
<DescriptorShortES>enSI</DescriptorShortES>
<DescriptorNameJA>ロ</DescriptorNameJA>
<DescriptorShortJA>ロ</DescriptorShortJA>
<DescriptorNameKO>in B</DescriptorNameKO>
<DescriptorShortKO>in B</DescriptorShortKO>
<DescriptorNamePL>H</DescriptorNamePL>
<DescriptorShortPL>H</DescriptorShortPL>
<DescriptorNamePT>em SI</DescriptorNamePT>
<DescriptorShortPT>em SI</DescriptorShortPT>
<DescriptorNameRU>в си</DescriptorNameRU>
<DescriptorShortRU>в си</DescriptorShortRU>
<DescriptorNameZH>si</DescriptorNameZH>
<DescriptorShortZH>si</DescriptorShortZH>
<DescriptorOrder>58</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:03:07.733+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:03:07.733+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>182</DescriptorID>
<DescriptorName>in Bb</DescriptorName>
<DescriptorShort>inBb</DescriptorShort>
<DescriptorNameDE>in B</DescriptorNameDE>
<DescriptorShortDE>inB</DescriptorShortDE>
<DescriptorNameFR>in Bb</DescriptorNameFR>
<DescriptorShortFR>inBb</DescriptorShortFR>
<DescriptorNameIT>in Sb</DescriptorNameIT>
<DescriptorShortIT>inSb</DescriptorShortIT>
<DescriptorNameES>en Si b</DescriptorNameES>
<DescriptorShortES>enSIb</DescriptorShortES>
<DescriptorNameJA>変ロ</DescriptorNameJA>
<DescriptorShortJA>変ロ</DescriptorShortJA>
<DescriptorNameKO>in Bb</DescriptorNameKO>
<DescriptorShortKO>in Bb</DescriptorShortKO>
<DescriptorNamePL>B</DescriptorNamePL>
<DescriptorShortPL>B</DescriptorShortPL>
<DescriptorNamePT>em SI bemol</DescriptorNamePT>
<DescriptorShortPT>em SI bemo</DescriptorShortPT>
<DescriptorNameRU>в си-бемоле</DescriptorNameRU>
<DescriptorShortRU>в си-бемол</DescriptorShortRU>
<DescriptorNameZH>降si</DescriptorNameZH>
<DescriptorShortZH>降si</DescriptorShortZH>
<DescriptorOrder>59</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:03:39.46+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:03:39.46+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>185</DescriptorID>
<DescriptorName>in Bb & D</DescriptorName>
<DescriptorShort>inBb&D</DescriptorShort>
<DescriptorNameDE>in B & D</DescriptorNameDE>
<DescriptorShortDE>inB&D</DescriptorShortDE>
<DescriptorNameFR>in Bb & D</DescriptorNameFR>
<DescriptorShortFR>inBb&D</DescriptorShortFR>
<DescriptorNameIT>in Sib & Re</DescriptorNameIT>
<DescriptorShortIT>inSib&Re</DescriptorShortIT>
<DescriptorNameES>en Si b & Re</DescriptorNameES>
<DescriptorShortES>enSIb&RE</DescriptorShortES>
<DescriptorNameJA>変ロとニ</DescriptorNameJA>
<DescriptorShortJA>変ロとニ</DescriptorShortJA>
<DescriptorNameKO>in Bb & D</DescriptorNameKO>
<DescriptorShortKO>in Bb & D</DescriptorShortKO>
<DescriptorNamePL>B&D</DescriptorNamePL>
<DescriptorShortPL>B&D</DescriptorShortPL>
<DescriptorNamePT>em SI bemol & RE</DescriptorNamePT>
<DescriptorShortPT>em SI bemo</DescriptorShortPT>
<DescriptorNameRU>в си-бемоле и ре</DescriptorNameRU>
<DescriptorShortRU>в си-бемол</DescriptorShortRU>
<DescriptorNameZH>降si 和 re</DescriptorNameZH>
<DescriptorShortZH>降si 和 re</DescriptorShortZH>
<DescriptorOrder>60</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:05:34.057+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:05:34.057+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>183</DescriptorID>
<DescriptorName>in Bb & A</DescriptorName>
<DescriptorShort>inBb&A</DescriptorShort>
<DescriptorNameDE>in B & A</DescriptorNameDE>
<DescriptorShortDE>inB&A</DescriptorShortDE>
<DescriptorNameFR>in Bb & A</DescriptorNameFR>
<DescriptorShortFR>inBb&A</DescriptorShortFR>
<DescriptorNameIT>in Sib & La</DescriptorNameIT>
<DescriptorShortIT>inSib&La</DescriptorShortIT>
<DescriptorNameES>en Si b & La</DescriptorNameES>
<DescriptorShortES>enSIb&LA</DescriptorShortES>
<DescriptorNameJA>変ロとイ</DescriptorNameJA>
<DescriptorShortJA>変ロとイ</DescriptorShortJA>
<DescriptorNameKO>in Bb & A</DescriptorNameKO>
<DescriptorShortKO>in Bb & A</DescriptorShortKO>
<DescriptorNamePL>B&A</DescriptorNamePL>
<DescriptorShortPL>B&A</DescriptorShortPL>
<DescriptorNamePT>em SI bemol & LA</DescriptorNamePT>
<DescriptorShortPT>em SI bemo</DescriptorShortPT>
<DescriptorNameRU>в си-бемоле и ля</DescriptorNameRU>
<DescriptorShortRU>в си-бемол</DescriptorShortRU>
<DescriptorNameZH>降si 和 la</DescriptorNameZH>
<DescriptorShortZH>降si 和 la</DescriptorShortZH>
<DescriptorOrder>62</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:04:19.23+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:04:19.23+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>184</DescriptorID>
<DescriptorName>in Bb & C</DescriptorName>
<DescriptorShort>inBb&C</DescriptorShort>
<DescriptorNameDE>in B & C</DescriptorNameDE>
<DescriptorShortDE>inB&C</DescriptorShortDE>
<DescriptorNameFR>in Bb & C</DescriptorNameFR>
<DescriptorShortFR>inBb&C</DescriptorShortFR>
<DescriptorNameIT>in Sib & Do</DescriptorNameIT>
<DescriptorShortIT>inSib&Do</DescriptorShortIT>
<DescriptorNameES>en Si b & Do</DescriptorNameES>
<DescriptorShortES>enSIb&DO</DescriptorShortES>
<DescriptorNameJA>変ロとハ</DescriptorNameJA>
<DescriptorShortJA>変ロとハ</DescriptorShortJA>
<DescriptorNameKO>in Bb & C</DescriptorNameKO>
<DescriptorShortKO>in Bb & C</DescriptorShortKO>
<DescriptorNamePL>B&C</DescriptorNamePL>
<DescriptorShortPL>B&C</DescriptorShortPL>
<DescriptorNamePT>em SI bemol & DO</DescriptorNamePT>
<DescriptorShortPT>em SI bemo</DescriptorShortPT>
<DescriptorNameRU>в си-бемоле и до</DescriptorNameRU>
<DescriptorShortRU>в си-бемол</DescriptorShortRU>
<DescriptorNameZH>降si 和 do</DescriptorNameZH>
<DescriptorShortZH>降si 和 do</DescriptorShortZH>
<DescriptorOrder>63</DescriptorOrder>
<DescriptorAdded>2015-11-18T21:04:55.38+00:00</DescriptorAdded>
<DescriptorEdited>2015-11-18T21:04:55.38+00:00</DescriptorEdited>
</UIC>
<UIC>
<DescriptorID>186</DescriptorID>
<DescriptorName>in Bb & Eb</DescriptorName>
<DescriptorShort>inBb&Eb</DescriptorShort>
<DescriptorNameDE>in B & Es</DescriptorNameDE>
<DescriptorShortDE>inB&Es</DescriptorShortDE>
<DescriptorNameFR>in Bb & Eb</DescriptorNameFR>
<DescriptorShortFR>inBb&Eb</DescriptorShortFR>
<DescriptorNameIT>in Sib & Mib</DescriptorNameIT>