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
/// A number of constants to give a name to all characters in this block.
mod constants {
    /// \u{1d200}: '𝈀'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_1: char = '𝈀';
    /// \u{1d201}: '𝈁'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_2: char = '𝈁';
    /// \u{1d202}: '𝈂'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_3: char = '𝈂';
    /// \u{1d203}: '𝈃'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_4: char = '𝈃';
    /// \u{1d204}: '𝈄'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_5: char = '𝈄';
    /// \u{1d205}: '𝈅'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_6: char = '𝈅';
    /// \u{1d206}: '𝈆'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_7: char = '𝈆';
    /// \u{1d207}: '𝈇'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_8: char = '𝈇';
    /// \u{1d208}: '𝈈'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_9: char = '𝈈';
    /// \u{1d209}: '𝈉'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_10: char = '𝈉';
    /// \u{1d20a}: '𝈊'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_11: char = '𝈊';
    /// \u{1d20b}: '𝈋'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_12: char = '𝈋';
    /// \u{1d20c}: '𝈌'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_13: char = '𝈌';
    /// \u{1d20d}: '𝈍'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_14: char = '𝈍';
    /// \u{1d20e}: '𝈎'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_15: char = '𝈎';
    /// \u{1d20f}: '𝈏'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_16: char = '𝈏';
    /// \u{1d210}: '𝈐'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_17: char = '𝈐';
    /// \u{1d211}: '𝈑'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_18: char = '𝈑';
    /// \u{1d212}: '𝈒'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_19: char = '𝈒';
    /// \u{1d213}: '𝈓'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_20: char = '𝈓';
    /// \u{1d214}: '𝈔'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_21: char = '𝈔';
    /// \u{1d215}: '𝈕'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_22: char = '𝈕';
    /// \u{1d216}: '𝈖'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_23: char = '𝈖';
    /// \u{1d217}: '𝈗'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_24: char = '𝈗';
    /// \u{1d218}: '𝈘'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_50: char = '𝈘';
    /// \u{1d219}: '𝈙'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_51: char = '𝈙';
    /// \u{1d21a}: '𝈚'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_52: char = '𝈚';
    /// \u{1d21b}: '𝈛'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_53: char = '𝈛';
    /// \u{1d21c}: '𝈜'
    pub const GREEK_VOCAL_NOTATION_SYMBOL_DASH_54: char = '𝈜';
    /// \u{1d21d}: '𝈝'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_1: char = '𝈝';
    /// \u{1d21e}: '𝈞'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_2: char = '𝈞';
    /// \u{1d21f}: '𝈟'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_4: char = '𝈟';
    /// \u{1d220}: '𝈠'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_5: char = '𝈠';
    /// \u{1d221}: '𝈡'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_7: char = '𝈡';
    /// \u{1d222}: '𝈢'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_8: char = '𝈢';
    /// \u{1d223}: '𝈣'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_11: char = '𝈣';
    /// \u{1d224}: '𝈤'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_12: char = '𝈤';
    /// \u{1d225}: '𝈥'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_13: char = '𝈥';
    /// \u{1d226}: '𝈦'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_14: char = '𝈦';
    /// \u{1d227}: '𝈧'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_17: char = '𝈧';
    /// \u{1d228}: '𝈨'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_18: char = '𝈨';
    /// \u{1d229}: '𝈩'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_19: char = '𝈩';
    /// \u{1d22a}: '𝈪'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_23: char = '𝈪';
    /// \u{1d22b}: '𝈫'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_24: char = '𝈫';
    /// \u{1d22c}: '𝈬'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_25: char = '𝈬';
    /// \u{1d22d}: '𝈭'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_26: char = '𝈭';
    /// \u{1d22e}: '𝈮'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_27: char = '𝈮';
    /// \u{1d22f}: '𝈯'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_29: char = '𝈯';
    /// \u{1d230}: '𝈰'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_30: char = '𝈰';
    /// \u{1d231}: '𝈱'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_32: char = '𝈱';
    /// \u{1d232}: '𝈲'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_36: char = '𝈲';
    /// \u{1d233}: '𝈳'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_37: char = '𝈳';
    /// \u{1d234}: '𝈴'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_38: char = '𝈴';
    /// \u{1d235}: '𝈵'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_39: char = '𝈵';
    /// \u{1d236}: '𝈶'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_40: char = '𝈶';
    /// \u{1d237}: '𝈷'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_42: char = '𝈷';
    /// \u{1d238}: '𝈸'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_43: char = '𝈸';
    /// \u{1d239}: '𝈹'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_45: char = '𝈹';
    /// \u{1d23a}: '𝈺'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_47: char = '𝈺';
    /// \u{1d23b}: '𝈻'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_48: char = '𝈻';
    /// \u{1d23c}: '𝈼'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_49: char = '𝈼';
    /// \u{1d23d}: '𝈽'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_50: char = '𝈽';
    /// \u{1d23e}: '𝈾'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_51: char = '𝈾';
    /// \u{1d23f}: '𝈿'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_52: char = '𝈿';
    /// \u{1d240}: '𝉀'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_53: char = '𝉀';
    /// \u{1d241}: '𝉁'
    pub const GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_54: char = '𝉁';
    /// \u{1d242}: '𝉂'
    pub const COMBINING_GREEK_MUSICAL_TRISEME: char = '𝉂';
    /// \u{1d243}: '𝉃'
    pub const COMBINING_GREEK_MUSICAL_TETRASEME: char = '𝉃';
    /// \u{1d244}: '𝉄'
    pub const COMBINING_GREEK_MUSICAL_PENTASEME: char = '𝉄';
    /// \u{1d245}: '𝉅'
    pub const GREEK_MUSICAL_LEIMMA: char = '𝉅';
}

/// An enum to represent all characters in the AncientGreekMusicalNotation block.
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub enum AncientGreekMusicalNotation {
    /// \u{1d200}: '𝈀'
    GreekVocalNotationSymbolDash1,
    /// \u{1d201}: '𝈁'
    GreekVocalNotationSymbolDash2,
    /// \u{1d202}: '𝈂'
    GreekVocalNotationSymbolDash3,
    /// \u{1d203}: '𝈃'
    GreekVocalNotationSymbolDash4,
    /// \u{1d204}: '𝈄'
    GreekVocalNotationSymbolDash5,
    /// \u{1d205}: '𝈅'
    GreekVocalNotationSymbolDash6,
    /// \u{1d206}: '𝈆'
    GreekVocalNotationSymbolDash7,
    /// \u{1d207}: '𝈇'
    GreekVocalNotationSymbolDash8,
    /// \u{1d208}: '𝈈'
    GreekVocalNotationSymbolDash9,
    /// \u{1d209}: '𝈉'
    GreekVocalNotationSymbolDash10,
    /// \u{1d20a}: '𝈊'
    GreekVocalNotationSymbolDash11,
    /// \u{1d20b}: '𝈋'
    GreekVocalNotationSymbolDash12,
    /// \u{1d20c}: '𝈌'
    GreekVocalNotationSymbolDash13,
    /// \u{1d20d}: '𝈍'
    GreekVocalNotationSymbolDash14,
    /// \u{1d20e}: '𝈎'
    GreekVocalNotationSymbolDash15,
    /// \u{1d20f}: '𝈏'
    GreekVocalNotationSymbolDash16,
    /// \u{1d210}: '𝈐'
    GreekVocalNotationSymbolDash17,
    /// \u{1d211}: '𝈑'
    GreekVocalNotationSymbolDash18,
    /// \u{1d212}: '𝈒'
    GreekVocalNotationSymbolDash19,
    /// \u{1d213}: '𝈓'
    GreekVocalNotationSymbolDash20,
    /// \u{1d214}: '𝈔'
    GreekVocalNotationSymbolDash21,
    /// \u{1d215}: '𝈕'
    GreekVocalNotationSymbolDash22,
    /// \u{1d216}: '𝈖'
    GreekVocalNotationSymbolDash23,
    /// \u{1d217}: '𝈗'
    GreekVocalNotationSymbolDash24,
    /// \u{1d218}: '𝈘'
    GreekVocalNotationSymbolDash50,
    /// \u{1d219}: '𝈙'
    GreekVocalNotationSymbolDash51,
    /// \u{1d21a}: '𝈚'
    GreekVocalNotationSymbolDash52,
    /// \u{1d21b}: '𝈛'
    GreekVocalNotationSymbolDash53,
    /// \u{1d21c}: '𝈜'
    GreekVocalNotationSymbolDash54,
    /// \u{1d21d}: '𝈝'
    GreekInstrumentalNotationSymbolDash1,
    /// \u{1d21e}: '𝈞'
    GreekInstrumentalNotationSymbolDash2,
    /// \u{1d21f}: '𝈟'
    GreekInstrumentalNotationSymbolDash4,
    /// \u{1d220}: '𝈠'
    GreekInstrumentalNotationSymbolDash5,
    /// \u{1d221}: '𝈡'
    GreekInstrumentalNotationSymbolDash7,
    /// \u{1d222}: '𝈢'
    GreekInstrumentalNotationSymbolDash8,
    /// \u{1d223}: '𝈣'
    GreekInstrumentalNotationSymbolDash11,
    /// \u{1d224}: '𝈤'
    GreekInstrumentalNotationSymbolDash12,
    /// \u{1d225}: '𝈥'
    GreekInstrumentalNotationSymbolDash13,
    /// \u{1d226}: '𝈦'
    GreekInstrumentalNotationSymbolDash14,
    /// \u{1d227}: '𝈧'
    GreekInstrumentalNotationSymbolDash17,
    /// \u{1d228}: '𝈨'
    GreekInstrumentalNotationSymbolDash18,
    /// \u{1d229}: '𝈩'
    GreekInstrumentalNotationSymbolDash19,
    /// \u{1d22a}: '𝈪'
    GreekInstrumentalNotationSymbolDash23,
    /// \u{1d22b}: '𝈫'
    GreekInstrumentalNotationSymbolDash24,
    /// \u{1d22c}: '𝈬'
    GreekInstrumentalNotationSymbolDash25,
    /// \u{1d22d}: '𝈭'
    GreekInstrumentalNotationSymbolDash26,
    /// \u{1d22e}: '𝈮'
    GreekInstrumentalNotationSymbolDash27,
    /// \u{1d22f}: '𝈯'
    GreekInstrumentalNotationSymbolDash29,
    /// \u{1d230}: '𝈰'
    GreekInstrumentalNotationSymbolDash30,
    /// \u{1d231}: '𝈱'
    GreekInstrumentalNotationSymbolDash32,
    /// \u{1d232}: '𝈲'
    GreekInstrumentalNotationSymbolDash36,
    /// \u{1d233}: '𝈳'
    GreekInstrumentalNotationSymbolDash37,
    /// \u{1d234}: '𝈴'
    GreekInstrumentalNotationSymbolDash38,
    /// \u{1d235}: '𝈵'
    GreekInstrumentalNotationSymbolDash39,
    /// \u{1d236}: '𝈶'
    GreekInstrumentalNotationSymbolDash40,
    /// \u{1d237}: '𝈷'
    GreekInstrumentalNotationSymbolDash42,
    /// \u{1d238}: '𝈸'
    GreekInstrumentalNotationSymbolDash43,
    /// \u{1d239}: '𝈹'
    GreekInstrumentalNotationSymbolDash45,
    /// \u{1d23a}: '𝈺'
    GreekInstrumentalNotationSymbolDash47,
    /// \u{1d23b}: '𝈻'
    GreekInstrumentalNotationSymbolDash48,
    /// \u{1d23c}: '𝈼'
    GreekInstrumentalNotationSymbolDash49,
    /// \u{1d23d}: '𝈽'
    GreekInstrumentalNotationSymbolDash50,
    /// \u{1d23e}: '𝈾'
    GreekInstrumentalNotationSymbolDash51,
    /// \u{1d23f}: '𝈿'
    GreekInstrumentalNotationSymbolDash52,
    /// \u{1d240}: '𝉀'
    GreekInstrumentalNotationSymbolDash53,
    /// \u{1d241}: '𝉁'
    GreekInstrumentalNotationSymbolDash54,
    /// \u{1d242}: '𝉂'
    CombiningGreekMusicalTriseme,
    /// \u{1d243}: '𝉃'
    CombiningGreekMusicalTetraseme,
    /// \u{1d244}: '𝉄'
    CombiningGreekMusicalPentaseme,
    /// \u{1d245}: '𝉅'
    GreekMusicalLeimma,
}

impl Into<char> for AncientGreekMusicalNotation {
    fn into(self) -> char {
        use constants::*;
        match self {
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash1 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_1,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash2 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_2,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash3 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_3,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash4 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_4,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash5 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_5,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash6 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_6,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash7 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_7,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash8 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_8,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash9 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_9,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash10 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_10,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash11 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_11,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash12 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_12,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash13 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_13,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash14 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_14,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash15 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_15,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash16 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_16,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash17 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_17,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash18 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_18,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash19 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_19,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash20 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_20,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash21 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_21,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash22 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_22,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash23 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_23,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash24 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_24,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash50 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_50,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash51 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_51,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash52 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_52,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash53 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_53,
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash54 => GREEK_VOCAL_NOTATION_SYMBOL_DASH_54,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash1 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_1,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash2 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_2,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash4 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_4,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash5 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_5,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash7 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_7,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash8 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_8,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash11 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_11,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash12 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_12,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash13 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_13,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash14 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_14,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash17 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_17,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash18 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_18,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash19 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_19,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash23 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_23,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash24 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_24,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash25 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_25,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash26 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_26,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash27 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_27,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash29 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_29,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash30 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_30,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash32 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_32,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash36 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_36,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash37 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_37,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash38 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_38,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash39 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_39,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash40 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_40,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash42 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_42,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash43 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_43,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash45 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_45,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash47 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_47,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash48 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_48,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash49 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_49,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash50 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_50,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash51 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_51,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash52 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_52,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash53 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_53,
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash54 => GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_54,
            AncientGreekMusicalNotation::CombiningGreekMusicalTriseme => COMBINING_GREEK_MUSICAL_TRISEME,
            AncientGreekMusicalNotation::CombiningGreekMusicalTetraseme => COMBINING_GREEK_MUSICAL_TETRASEME,
            AncientGreekMusicalNotation::CombiningGreekMusicalPentaseme => COMBINING_GREEK_MUSICAL_PENTASEME,
            AncientGreekMusicalNotation::GreekMusicalLeimma => GREEK_MUSICAL_LEIMMA,
        }
    }
}

impl std::convert::TryFrom<char> for AncientGreekMusicalNotation {
    type Error = ();
    fn try_from(c: char) -> Result<Self, Self::Error> {
        use constants::*;
        match c {
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_1 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash1),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_2 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash2),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_3 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash3),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_4 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash4),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_5 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash5),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_6 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash6),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_7 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash7),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_8 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash8),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_9 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash9),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_10 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash10),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_11 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash11),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_12 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash12),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_13 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash13),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_14 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash14),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_15 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash15),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_16 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash16),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_17 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash17),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_18 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash18),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_19 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash19),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_20 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash20),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_21 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash21),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_22 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash22),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_23 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash23),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_24 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash24),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_50 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash50),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_51 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash51),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_52 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash52),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_53 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash53),
            GREEK_VOCAL_NOTATION_SYMBOL_DASH_54 => Ok(AncientGreekMusicalNotation::GreekVocalNotationSymbolDash54),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_1 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash1),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_2 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash2),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_4 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash4),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_5 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash5),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_7 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash7),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_8 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash8),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_11 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash11),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_12 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash12),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_13 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash13),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_14 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash14),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_17 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash17),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_18 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash18),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_19 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash19),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_23 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash23),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_24 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash24),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_25 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash25),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_26 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash26),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_27 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash27),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_29 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash29),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_30 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash30),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_32 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash32),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_36 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash36),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_37 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash37),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_38 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash38),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_39 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash39),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_40 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash40),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_42 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash42),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_43 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash43),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_45 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash45),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_47 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash47),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_48 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash48),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_49 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash49),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_50 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash50),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_51 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash51),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_52 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash52),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_53 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash53),
            GREEK_INSTRUMENTAL_NOTATION_SYMBOL_DASH_54 => Ok(AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash54),
            COMBINING_GREEK_MUSICAL_TRISEME => Ok(AncientGreekMusicalNotation::CombiningGreekMusicalTriseme),
            COMBINING_GREEK_MUSICAL_TETRASEME => Ok(AncientGreekMusicalNotation::CombiningGreekMusicalTetraseme),
            COMBINING_GREEK_MUSICAL_PENTASEME => Ok(AncientGreekMusicalNotation::CombiningGreekMusicalPentaseme),
            GREEK_MUSICAL_LEIMMA => Ok(AncientGreekMusicalNotation::GreekMusicalLeimma),
            _ => Err(()),
        }
    }
}

impl Into<u32> for AncientGreekMusicalNotation {
    fn into(self) -> u32 {
        let c: char = self.into();
        let hex = c
            .escape_unicode()
            .to_string()
            .replace("\\u{", "")
            .replace("}", "");
        u32::from_str_radix(&hex, 16).unwrap()
    }
}

impl std::convert::TryFrom<u32> for AncientGreekMusicalNotation {
    type Error = ();
    fn try_from(u: u32) -> Result<Self, Self::Error> {
        if let Ok(c) = char::try_from(u) {
            Self::try_from(c)
        } else {
            Err(())
        }
    }
}

impl Iterator for AncientGreekMusicalNotation {
    type Item = Self;
    fn next(&mut self) -> Option<Self> {
        let index: u32 = (*self).into();
        use std::convert::TryFrom;
        Self::try_from(index + 1).ok()
    }
}

impl AncientGreekMusicalNotation {
    /// The character with the lowest index in this unicode block
    pub fn new() -> Self {
        AncientGreekMusicalNotation::GreekVocalNotationSymbolDash1
    }

    /// The character's name, all lowercase and space-separated
    pub fn name(&self) -> &str {
        match self {
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash1 => "greek vocal notation symbol-1",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash2 => "greek vocal notation symbol-2",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash3 => "greek vocal notation symbol-3",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash4 => "greek vocal notation symbol-4",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash5 => "greek vocal notation symbol-5",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash6 => "greek vocal notation symbol-6",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash7 => "greek vocal notation symbol-7",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash8 => "greek vocal notation symbol-8",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash9 => "greek vocal notation symbol-9",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash10 => "greek vocal notation symbol-10",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash11 => "greek vocal notation symbol-11",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash12 => "greek vocal notation symbol-12",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash13 => "greek vocal notation symbol-13",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash14 => "greek vocal notation symbol-14",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash15 => "greek vocal notation symbol-15",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash16 => "greek vocal notation symbol-16",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash17 => "greek vocal notation symbol-17",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash18 => "greek vocal notation symbol-18",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash19 => "greek vocal notation symbol-19",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash20 => "greek vocal notation symbol-20",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash21 => "greek vocal notation symbol-21",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash22 => "greek vocal notation symbol-22",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash23 => "greek vocal notation symbol-23",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash24 => "greek vocal notation symbol-24",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash50 => "greek vocal notation symbol-50",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash51 => "greek vocal notation symbol-51",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash52 => "greek vocal notation symbol-52",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash53 => "greek vocal notation symbol-53",
            AncientGreekMusicalNotation::GreekVocalNotationSymbolDash54 => "greek vocal notation symbol-54",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash1 => "greek instrumental notation symbol-1",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash2 => "greek instrumental notation symbol-2",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash4 => "greek instrumental notation symbol-4",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash5 => "greek instrumental notation symbol-5",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash7 => "greek instrumental notation symbol-7",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash8 => "greek instrumental notation symbol-8",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash11 => "greek instrumental notation symbol-11",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash12 => "greek instrumental notation symbol-12",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash13 => "greek instrumental notation symbol-13",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash14 => "greek instrumental notation symbol-14",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash17 => "greek instrumental notation symbol-17",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash18 => "greek instrumental notation symbol-18",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash19 => "greek instrumental notation symbol-19",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash23 => "greek instrumental notation symbol-23",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash24 => "greek instrumental notation symbol-24",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash25 => "greek instrumental notation symbol-25",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash26 => "greek instrumental notation symbol-26",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash27 => "greek instrumental notation symbol-27",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash29 => "greek instrumental notation symbol-29",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash30 => "greek instrumental notation symbol-30",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash32 => "greek instrumental notation symbol-32",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash36 => "greek instrumental notation symbol-36",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash37 => "greek instrumental notation symbol-37",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash38 => "greek instrumental notation symbol-38",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash39 => "greek instrumental notation symbol-39",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash40 => "greek instrumental notation symbol-40",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash42 => "greek instrumental notation symbol-42",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash43 => "greek instrumental notation symbol-43",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash45 => "greek instrumental notation symbol-45",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash47 => "greek instrumental notation symbol-47",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash48 => "greek instrumental notation symbol-48",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash49 => "greek instrumental notation symbol-49",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash50 => "greek instrumental notation symbol-50",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash51 => "greek instrumental notation symbol-51",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash52 => "greek instrumental notation symbol-52",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash53 => "greek instrumental notation symbol-53",
            AncientGreekMusicalNotation::GreekInstrumentalNotationSymbolDash54 => "greek instrumental notation symbol-54",
            AncientGreekMusicalNotation::CombiningGreekMusicalTriseme => "combining greek musical triseme",
            AncientGreekMusicalNotation::CombiningGreekMusicalTetraseme => "combining greek musical tetraseme",
            AncientGreekMusicalNotation::CombiningGreekMusicalPentaseme => "combining greek musical pentaseme",
            AncientGreekMusicalNotation::GreekMusicalLeimma => "greek musical leimma",
        }
    }
}