-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlogainm-gadbp.nt
1044 lines (1044 loc) · 135 KB
/
logainm-gadbp.nt
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
<http://data.logainm.ie/place/1375542> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_Cliath> .
<http://data.logainm.ie/place/118005> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_Feirste> .
<http://data.logainm.ie/place/1385532> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_na_Siopa\u00ED> .
<http://data.logainm.ie/place/1166779> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Stigh_Lorgan> .
<http://data.logainm.ie/place/131031> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00F3thar_na_Tr\u00E1> .
<http://data.logainm.ie/place/1385574> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corcaigh> .
<http://data.logainm.ie/place/1413966> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Muileann_gCearr> .
<http://data.logainm.ie/place/130168> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Bhair\u00EDnigh> .
<http://data.logainm.ie/place/66393> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cromghlinn_(Contae_an_D\u00FAin)> .
<http://data.logainm.ie/place/66580> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_Uidhil\u00EDn> .
<http://data.logainm.ie/place/1413105> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1it_T\u00ED_Chathail> .
<http://data.logainm.ie/place/1167018> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Coinnleora> .
<http://data.logainm.ie/place/1413117> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Eoirna> .
<http://data.logainm.ie/place/1413115> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Thalb\u00F3id> .
<http://data.logainm.ie/place/51761> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Bheag\u00E1in> .
<http://data.logainm.ie/place/66376> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Domhnach_Cluana> .
<http://data.logainm.ie/place/1413864> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tigh_Mochua> .
<http://data.logainm.ie/place/1411719> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Eanach_Cluana> .
<http://data.logainm.ie/place/67037> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chaoil> .
<http://data.logainm.ie/place/1399926> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chainnigh> .
<http://data.logainm.ie/place/1411720> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_D\u00F3naill> .
<http://data.logainm.ie/place/66070> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_Gabhann> .
<http://data.logainm.ie/place/1384607> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gaillimh> .
<http://data.logainm.ie/place/1167042> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Luimneach> .
<http://data.logainm.ie/place/1413294> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Scarbhach> .
<http://data.logainm.ie/place/65790> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Port_an_Ghiolla_Ghruama> .
<http://data.logainm.ie/place/28692> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Bhr\u00F3ithe> .
<http://data.logainm.ie/place/1413852> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Briot\u00E1is> .
<http://data.logainm.ie/place/1383426> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Grafton> .
<http://data.logainm.ie/place/1167020> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Loch_Cuan> .
<http://data.logainm.ie/place/58666> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Doire> .
<http://data.logainm.ie/place/23053> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Neid\u00EDn> .
<http://data.logainm.ie/place/1413230> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Carbad> .
<http://data.logainm.ie/place/1411722> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_an_Oile\u00E1in> .
<http://data.logainm.ie/place/1165610> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Caladh> .
<http://data.logainm.ie/place/1412549> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAlainn> .
<http://data.logainm.ie/place/14378> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_F\u00E1l_Carrach> .
<http://data.logainm.ie/place/18684> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_O\u00EDrr> .
<http://data.logainm.ie/place/1383828> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Port_L\u00E1irge> .
<http://data.logainm.ie/place/1390502> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sligeach> .
<http://data.logainm.ie/place/1411629> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Dealgan> .
<http://data.logainm.ie/place/1166040> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Druim_B\u00F3> .
<http://data.logainm.ie/place/167> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_\u00C1tha> .
<http://data.logainm.ie/place/6104> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_(baile)> .
<http://data.logainm.ie/place/1411922> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceatharlach> .
<http://data.logainm.ie/place/14401> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Fionnachaidh> .
<http://data.logainm.ie/place/24803> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tr\u00E1_L\u00ED> .
<http://data.logainm.ie/place/1165586> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cabh\u00E1n> .
<http://data.logainm.ie/place/1166521> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_N\u00E1s> .
<http://data.logainm.ie/place/67189> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Meala> .
<http://data.logainm.ie/place/37598> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Uaimh> .
<http://data.logainm.ie/place/3895> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_Shamhr\u00E1in> .
<http://data.logainm.ie/place/4494> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_Tairbirt> .
<http://data.logainm.ie/place/3878> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_Conaill> .
<http://data.logainm.ie/place/4134> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Sh\u00E9amais_Dhuibh> .
<http://data.logainm.ie/place/1411875> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_nEach> .
<http://data.logainm.ie/place/1413835> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_Bh\u00F3> .
<http://data.logainm.ie/place/37818> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Seachlainn> .
<http://data.logainm.ie/place/1166304> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Leathros> .
<http://data.logainm.ie/place/28645> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Fhionnghlaise> .
<http://data.logainm.ie/place/45154> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Rath_Breach\u00E1in> .
<http://data.logainm.ie/place/113125> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_De\u00E1n> .
<http://data.logainm.ie/place/1414045> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceann_Toirc> .
<http://data.logainm.ie/place/21249> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Port_Omna> .
<http://data.logainm.ie/place/108554> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_an_Tr\u00ED_Liag> .
<http://data.logainm.ie/place/1411623> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_na_F\u00E9ile> .
<http://data.logainm.ie/place/1414154> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_Shruthla> .
<http://data.logainm.ie/place/1412328> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_Ch\u00F3ige> .
<http://data.logainm.ie/place/127317> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Chain\u00EDn> .
<http://data.logainm.ie/place/5104> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_an_Seanr\u00E1tha> .
<http://data.logainm.ie/place/42316> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tulach_Mh\u00F3r> .
<http://data.logainm.ie/place/134769> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Marcach> .
<http://data.logainm.ie/place/8530> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_an_Chulinn> .
<http://data.logainm.ie/place/1411881> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_Dara> .
<http://data.logainm.ie/place/938> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_M\u00F3r> .
<http://data.logainm.ie/place/50733> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_Luain> .
<http://data.logainm.ie/place/40866> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muineach\u00E1n> .
<http://data.logainm.ie/place/2222> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FArlas_\u00C9ile> .
<http://data.logainm.ie/place/36858> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/S\u00E1ile> .
<http://data.logainm.ie/place/34702> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_\u00C1tha> .
<http://data.logainm.ie/place/16611> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_na_Sil\u00EDn\u00ED> .
<http://data.logainm.ie/place/38422> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_I\u00FAili\u00E1in> .
<http://data.logainm.ie/place/4895> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Chearb\u00E1n> .
<http://data.logainm.ie/place/3794> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Mullach,_Contae_an_Chabh\u00E1in> .
<http://data.logainm.ie/place/127341> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gleann_Ghaibhle> .
<http://data.logainm.ie/place/3823> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Searc\u00F3g> .
<http://data.logainm.ie/place/53066> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chloch,_Contae_Loch_Garman> .
<http://data.logainm.ie/place/36023> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_hAmhnais> .
<http://data.logainm.ie/place/101226> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Daod> .
<http://data.logainm.ie/place/1416336> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00EDseart_Diarmada> .
<http://data.logainm.ie/place/6956> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_na_Can\u00E1nach> .
<http://data.logainm.ie/place/3080> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Bhile> .
<http://data.logainm.ie/place/1383711> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fionnradharc> .
<http://data.logainm.ie/place/17225> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Bhlains\u00E9ir> .
<http://data.logainm.ie/place/101080> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corr\u00E1n_Tuathail> .
<http://data.logainm.ie/place/25209> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_Eimh\u00EDn> .
<http://data.logainm.ie/place/9189> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tigh_Molaige> .
<http://data.logainm.ie/place/130175> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_D\u00F3nairt> .
<http://data.logainm.ie/place/58091> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_u\u00ED_R\u00F3n\u00E1in> .
<http://data.logainm.ie/place/41810> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muine_Gall> .
<http://data.logainm.ie/place/39083> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00CDomhair> .
<http://data.logainm.ie/place/49642> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Garbh\u00E1n> .
<http://data.logainm.ie/place/44890> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Crabhann> .
<http://data.logainm.ie/place/29140> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cora_Droma_R\u00FAisc> .
<http://data.logainm.ie/place/1166543> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_M\u00F3r_an_Barraigh> .
<http://data.logainm.ie/place/8044> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_na_Corann> .
<http://data.logainm.ie/place/1166374> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Gair> .
<http://data.logainm.ie/place/63304> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Lorgain> .
<http://data.logainm.ie/place/1411866> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Port_Mearn\u00F3g> .
<http://data.logainm.ie/place/1411656> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Formaid> .
<http://data.logainm.ie/place/130910> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_Sluaighe> .
<http://data.logainm.ie/place/23784> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Airne> .
<http://data.logainm.ie/place/114135> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cruach_Ph\u00E1draig> .
<http://data.logainm.ie/place/1411985> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Droichid> .
<http://data.logainm.ie/place/1381133> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cearn\u00F3g_Mhuirfean> .
<http://data.logainm.ie/place/36851> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Acaill> .
<http://data.logainm.ie/place/1416337> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Claonadh> .
<http://data.logainm.ie/place/33031> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ardach,_Contae_an_Longfoirt> .
<http://data.logainm.ie/place/14547> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_an_R\u00E1tha> .
<http://data.logainm.ie/place/1412100> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_Fhirdhia> .
<http://data.logainm.ie/place/66789> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_Ghlais> .
<http://data.logainm.ie/place/1166985> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dh\u00E1_Dhroim> .
<http://data.logainm.ie/place/17472> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Buad\u00E1in> .
<http://data.logainm.ie/place/7214> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Cathaigh> .
<http://data.logainm.ie/place/61874> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_Abhann_Duinne> .
<http://data.logainm.ie/place/33297> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Longfort> .
<http://data.logainm.ie/place/16662> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Br\u00E9> .
<http://data.logainm.ie/place/55959> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mhant\u00E1in> .
<http://data.logainm.ie/place/12597> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_an_Mhuilinn> .
<http://data.logainm.ie/place/17503> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Deilginis> .
<http://data.logainm.ie/place/54566> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_tInbhear_M\u00F3r> .
<http://data.logainm.ie/place/44339> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Com\u00E1in> .
<http://data.logainm.ie/place/1411640> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tiobraid_\u00C1rann_(baile)> .
<http://data.logainm.ie/place/17531> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ch\u00FAl\u00F3g> .
<http://data.logainm.ie/place/25493> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Doire_an_tSoirn> .
<http://data.logainm.ie/place/1165657> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cathair_Conraoi> .
<http://data.logainm.ie/place/129761> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Clochdroma> .
<http://data.logainm.ie/place/45469> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Idir_dh\u00E1_Abhainn> .
<http://data.logainm.ie/place/3400> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muine_Bheag> .
<http://data.logainm.ie/place/1411939> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cathair_Saidhbh\u00EDn> .
<http://data.logainm.ie/place/1411701> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Bhuirne> .
<http://data.logainm.ie/place/1166739> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Mis> .
<http://data.logainm.ie/place/1167014> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_na_hIora> .
<http://data.logainm.ie/place/17499> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Laoghaire> .
<http://data.logainm.ie/place/1167113> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_an_Bharraigh> .
<http://data.logainm.ie/place/25432> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Nuad> .
<http://data.logainm.ie/place/13885> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_Cranncha> .
<http://data.logainm.ie/place/38892> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_Bu\u00ED> .
<http://data.logainm.ie/place/19599> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_an_R\u00ED> .
<http://data.logainm.ie/place/38395> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Damhliag> .
<http://data.logainm.ie/place/116127> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhuais> .
<http://data.logainm.ie/place/37087> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Fhiach\u00E1in> .
<http://data.logainm.ie/place/34942> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maolla> .
<http://data.logainm.ie/place/16562> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Srath_an_Url\u00E1ir> .
<http://data.logainm.ie/place/1165765> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cipi\u00FAr> .
<http://data.logainm.ie/place/47966> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_P\u00F3ir\u00EDn> .
<http://data.logainm.ie/place/129782> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Rinn,_Contae_Dhoire> .
<http://data.logainm.ie/place/1166929> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_hAbhann> .
<http://data.logainm.ie/place/11584> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_\u00CDre> .
<http://data.logainm.ie/place/1411937> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chl\u00E1ir> .
<http://data.logainm.ie/place/3623> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_an_Chollaigh> .
<http://data.logainm.ie/place/16735> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Brig\u00EDn> .
<http://data.logainm.ie/place/35491> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Balla> .
<http://data.logainm.ie/place/29005> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_\u00C1tha_M\u00F3ir> .
<http://data.logainm.ie/place/34209> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chaisil> .
<http://data.logainm.ie/place/16537> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bealach_F\u00E9ich> .
<http://data.logainm.ie/place/1166748> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Sliabh_Riabhach> .
<http://data.logainm.ie/place/1412090> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Mhath\u00E1in> .
<http://data.logainm.ie/place/5754> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Bheach\u00E1in> .
<http://data.logainm.ie/place/13830> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_Seanaidh> .
<http://data.logainm.ie/place/54590> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bealach_Conglais> .
<http://data.logainm.ie/place/8397> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Beanntra\u00ED> .
<http://data.logainm.ie/place/35348> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_Mhuirthead> .
<http://data.logainm.ie/place/108550> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Guag\u00E1n_Barra> .
<http://data.logainm.ie/place/131233> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Port_Laoise> .
<http://data.logainm.ie/place/11081> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cionn_tS\u00E1ile> .
<http://data.logainm.ie/place/114132> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cruach\u00E1n> .
<http://data.logainm.ie/place/16278> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leifear> .
<http://data.logainm.ie/place/1166343> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Coirib> .
<http://data.logainm.ie/place/1166268> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_P\u00E1draig> .
<http://data.logainm.ie/place/14030> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_na_nGall> .
<http://data.logainm.ie/place/1411754> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Tiobrad> .
<http://data.logainm.ie/place/40963> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhoth> .
<http://data.logainm.ie/place/133546> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_na_hAbhla> .
<http://data.logainm.ie/place/54622> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Coim\u00EDn> .
<http://data.logainm.ie/place/1412103> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Bh\u00F3thair,_\u00C1th_Cliath> .
<http://data.logainm.ie/place/45846> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Buir\u00EDos_U\u00ED_Ch\u00E9in> .
<http://data.logainm.ie/place/116563> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bh\u00F3inn> .
<http://data.logainm.ie/place/1167017> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Chliabh> .
<http://data.logainm.ie/place/15338> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_an_Phobail> .
<http://data.logainm.ie/place/25860> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Dara> .
<http://data.logainm.ie/place/1165378> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Aonach_Urmhumhan> .
<http://data.logainm.ie/place/57138> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Domhnach_Cearna> .
<http://data.logainm.ie/place/22553> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Daingean> .
<http://data.logainm.ie/place/14546> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Tr\u00E1_Tholl> .
<http://data.logainm.ie/place/116552> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhear\u00FA> .
<http://data.logainm.ie/place/130443> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Teileann> .
<http://data.logainm.ie/place/128825> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Clocha_Liatha> .
<http://data.logainm.ie/place/1412095> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gr\u00E1nard> .
<http://data.logainm.ie/place/114291> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Con> .
<http://data.logainm.ie/place/15696> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leitir_Ceanainn> .
<http://data.logainm.ie/place/40249> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAil_Darach> .
<http://data.logainm.ie/place/40663> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Scairbh_na_gCaorach> .
<http://data.logainm.ie/place/128521> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_Nua> .
<http://data.logainm.ie/place/105050> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_S\u00EDodh_Linn> .
<http://data.logainm.ie/place/7313> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Rois> .
<http://data.logainm.ie/place/19179> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_Raithin> .
<http://data.logainm.ie/place/1412159> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dumhach_Thr\u00E1> .
<http://data.logainm.ie/place/41582> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Pollach> .
<http://data.logainm.ie/place/1411664> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Eanaigh> .
<http://data.logainm.ie/place/13042> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chaisle\u00E1in> .
<http://data.logainm.ie/place/11800> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_ar_Aill> .
<http://data.logainm.ie/place/33532> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Collann> .
<http://data.logainm.ie/place/21909> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Mhuilinn_(Contae_na_Gaillimhe)> .
<http://data.logainm.ie/place/17019> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mullach_\u00CDde> .
<http://data.logainm.ie/place/52445> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_C\u00F3rthaidh> .
<http://data.logainm.ie/place/25406> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/L\u00E9im_an_Bhrad\u00E1in> .
<http://data.logainm.ie/place/17457> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tamhlacht> .
<http://data.logainm.ie/place/1166106> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/F\u00E1n\u00F3ir> .
<http://data.logainm.ie/place/24245> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Tuathail> .
<http://data.logainm.ie/place/1411620> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tuaim> .
<http://data.logainm.ie/place/9192> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cloich_na_Coillte> .
<http://data.logainm.ie/place/1165632> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Carn_(Contae_an_Chl\u00E1ir)> .
<http://data.logainm.ie/place/11689> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_na_Mallach> .
<http://data.logainm.ie/place/11513> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Chromtha> .
<http://data.logainm.ie/place/130427> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Port_an_tSalainn> .
<http://data.logainm.ie/place/39315> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_Mhachaire_Rois> .
<http://data.logainm.ie/place/46874> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Cr\u00E9> .
<http://data.logainm.ie/place/67177> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_na_Si\u00FAire> .
<http://data.logainm.ie/place/53072> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Guaire> .
<http://data.logainm.ie/place/36852> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_an_Churraigh> .
<http://data.logainm.ie/place/131824> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_Chl\u00F3id\u00ED> .
<http://data.logainm.ie/place/5793> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_D\u00FAin_Bhearna> .
<http://data.logainm.ie/place/13886> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_Dobhr\u00E1in> .
<http://data.logainm.ie/place/1166373> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Gile> .
<http://data.logainm.ie/place/6720> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Fhionn\u00FArach> .
<http://data.logainm.ie/place/1412106> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_Fhear_Ma\u00ED> .
<http://data.logainm.ie/place/13715> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Eochaill> .
<http://data.logainm.ie/place/39220> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_Troim> .
<http://data.logainm.ie/place/37774> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_B\u00FAinne> .
<http://data.logainm.ie/place/37202> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Creag\u00E1n_B\u00E1n> .
<http://data.logainm.ie/place/14803> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Charthaigh> .
<http://data.logainm.ie/place/11361> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAil_Aodha> .
<http://data.logainm.ie/place/37997> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_T\u00F3> .
<http://data.logainm.ie/place/53634> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Mhic_Thri\u00FAin> .
<http://data.logainm.ie/place/62678> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Frosa> .
<http://data.logainm.ie/place/41694> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C9adan_Doire,_Co._U\u00EDbh_Fhail\u00ED> .
<http://data.logainm.ie/place/36638> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Cheallaigh> .
<http://data.logainm.ie/place/37477> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Mhala_Raithn\u00ED> .
<http://data.logainm.ie/place/14987> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ailt_an_Chorr\u00E1in> .
<http://data.logainm.ie/place/6782> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Ceann\u00FAir> .
<http://data.logainm.ie/place/132920> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cathair_na_Mart> .
<http://data.logainm.ie/place/7979> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cuinche> .
<http://data.logainm.ie/place/16675> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00E1b\u00E1n_tS\u00EDle> .
<http://data.logainm.ie/place/1165781> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cloch\u00E1n_(Contae_na_Gaillimhe)> .
<http://data.logainm.ie/place/1413906> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chluain> .
<http://data.logainm.ie/place/1413158> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Cearb\u00E1n> .
<http://data.logainm.ie/place/16498> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Bhoth> .
<http://data.logainm.ie/place/6832> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_na_Cathrach> .
<http://data.logainm.ie/place/15963> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_nGall\u00F3glach> .
<http://data.logainm.ie/place/1413945> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Locha_Riach> .
<http://data.logainm.ie/place/34329> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Crois_Mhaoil\u00EDona> .
<http://data.logainm.ie/place/34102> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tearmann_Feich\u00EDn> .
<http://data.logainm.ie/place/1166041> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Dh\u00E1_Thiar> .
<http://data.logainm.ie/place/1413963> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cionn_\u00C1tha_Gad> .
<http://data.logainm.ie/place/1413949> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00D3r\u00E1n_M\u00F3r> .
<http://data.logainm.ie/place/543> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cl\u00E9ire> .
<http://data.logainm.ie/place/15104> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carn_Domhnach> .
<http://data.logainm.ie/place/36854> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Caiseal> .
<http://data.logainm.ie/place/67254> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Fheoir> .
<http://data.logainm.ie/place/24460> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_Ciarra\u00ED> .
<http://data.logainm.ie/place/17267> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_Cnucha> .
<http://data.logainm.ie/place/43498> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Caisle\u00E1n_Riabhach> .
<http://data.logainm.ie/place/10044> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Chaisle\u00E1n_an_R\u00F3istigh> .
<http://data.logainm.ie/place/132905> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Chathail> .
<http://data.logainm.ie/place/56731> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_na_Cranncha> .
<http://data.logainm.ie/place/56421> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_Cam\u00E1n> .
<http://data.logainm.ie/place/36982> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_Chliara> .
<http://data.logainm.ie/place/36124> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cl\u00E1r_Clainne_Mhuiris> .
<http://data.logainm.ie/place/17367> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Dolc\u00E1in> .
<http://data.logainm.ie/place/1411635> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Eois> .
<http://data.logainm.ie/place/57677> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAil_Raithin> .
<http://data.logainm.ie/place/1411891> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gr\u00E1ig_na_Manach> .
<http://data.logainm.ie/place/116617> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Abhainn_na_Sl\u00E1ine> .
<http://data.logainm.ie/place/64199> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chorr_Chr\u00EDochach> .
<http://data.logainm.ie/place/135854> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_na_gCloch> .
<http://data.logainm.ie/place/56337> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_Cullach> .
<http://data.logainm.ie/place/1411890> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gabhr\u00E1n> .
<http://data.logainm.ie/place/14500> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Toraigh> .
<http://data.logainm.ie/place/1413959> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dealbhna> .
<http://data.logainm.ie/place/1383632> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_U\u00ED_Chonaill> .
<http://data.logainm.ie/place/36855> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Ibhir> .
<http://data.logainm.ie/place/37054> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muraisc> .
<http://data.logainm.ie/place/57142> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Conrach> .
<http://data.logainm.ie/place/17413> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Fearn\u00E1in> .
<http://data.logainm.ie/place/3412> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/M\u00EDseal> .
<http://data.logainm.ie/place/55052> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_na_Sceire> .
<http://data.logainm.ie/place/1383327> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Bhag\u00F3id> .
<http://data.logainm.ie/place/111149> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Earagail> .
<http://data.logainm.ie/place/136080> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corr_Leacht> .
<http://data.logainm.ie/place/101183> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Abhainn_na_F\u00E9ile> .
<http://data.logainm.ie/place/937> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Me\u00E1in> .
<http://data.logainm.ie/place/56221> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coillidh_L\u00E9ith> .
<http://data.logainm.ie/place/1381917> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Faiche_Stiabhna> .
<http://data.logainm.ie/place/1411901> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_And\u00E1in> .
<http://data.logainm.ie/place/34685> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_Easa> .
<http://data.logainm.ie/place/101054> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Bhreand\u00E1in> .
<http://data.logainm.ie/place/1165511> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Beanna_Boirche> .
<http://data.logainm.ie/place/1166157> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Gharbh\u00F3g> .
<http://data.logainm.ie/place/1414051> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhist\u00E9ala> .
<http://data.logainm.ie/place/12804> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Dairbhre> .
<http://data.logainm.ie/place/1165545> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bochnach> .
<http://data.logainm.ie/place/57007> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coillidh_Chanann\u00E1in> .
<http://data.logainm.ie/place/56190> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dearclaigh> .
<http://data.logainm.ie/place/16810> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Reachrainn> .
<http://data.logainm.ie/place/67268> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_na_mBan> .
<http://data.logainm.ie/place/1166189> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Gleann_Garbh> .
<http://data.logainm.ie/place/19341> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gort_Inse_Guaire> .
<http://data.logainm.ie/place/1413596> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_L\u00EDon\u00E1n> .
<http://data.logainm.ie/place/136034> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Doire_N\u00FAis> .
<http://data.logainm.ie/place/1375327> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Toirc> .
<http://data.logainm.ie/place/1167050> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chaoi> .
<http://data.logainm.ie/place/18376> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ardoile\u00E1n> .
<http://data.logainm.ie/place/66065> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_Mhic_Nasca> .
<http://data.logainm.ie/place/1166553> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_tOspid\u00E9al> .
<http://data.logainm.ie/place/108037> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_L\u00E9inn> .
<http://data.logainm.ie/place/1411621> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_Laoise> .
<http://data.logainm.ie/place/45211> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Muir\u00EDgh> .
<http://data.logainm.ie/place/23580> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Orglan> .
<http://data.logainm.ie/place/17542> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Mac_Neas\u00E1in> .
<http://data.logainm.ie/place/1411645> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Foirceal> .
<http://data.logainm.ie/place/15276> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Carraig\u00EDn> .
<http://data.logainm.ie/place/34526> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Ala> .
<http://data.logainm.ie/place/1165663> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Cealla_Beaga> .
<http://data.logainm.ie/place/1412922> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coillte_M\u00E1ch> .
<http://data.logainm.ie/place/9315> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_U\u00ED_Leighin> .
<http://data.logainm.ie/place/67220> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sl\u00E9ibhte_Chnoc_Mhaoldomhnaigh> .
<http://data.logainm.ie/place/101065> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ceachach> .
<http://data.logainm.ie/place/67221> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Mhaoldomhnaigh> .
<http://data.logainm.ie/place/1165828> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cnoc_Bu\u00ED> .
<http://data.logainm.ie/place/1166507> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mullach_an_Ois> .
<http://data.logainm.ie/place/1166390> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Measca> .
<http://data.logainm.ie/place/1165847> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_na_Riabh> .
<http://data.logainm.ie/place/38735> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Shl\u00E1ine> .
<http://data.logainm.ie/place/9019> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAirt_Mhic_Sh\u00E9afraidh> .
<http://data.logainm.ie/place/1412693> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Eadarg\u00F3il> .
<http://data.logainm.ie/place/17131> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leamhc\u00E1n> .
<http://data.logainm.ie/place/1166810> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Teampall_M\u00F3r> .
<http://data.logainm.ie/place/1166329> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Loch_B\u00E1n> .
<http://data.logainm.ie/place/56851> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Mullach_B\u00E1n> .
<http://data.logainm.ie/place/18038> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leitir_Fraic> .
<http://data.logainm.ie/place/1411764> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Scr\u00EDn> .
<http://data.logainm.ie/place/16678> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_an_tSionnaigh> .
<http://data.logainm.ie/place/1411892> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_T\u00EDog> .
<http://data.logainm.ie/place/1414429> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_\u00C1tha_Fada> .
<http://data.logainm.ie/place/1414533> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lothra> .
<http://data.logainm.ie/place/114289> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Ceara> .
<http://data.logainm.ie/place/1375408> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain\u00EDn> .
<http://data.logainm.ie/place/55644> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chinn\u00E9idigh> .
<http://data.logainm.ie/place/45022> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Mh\u00F3ta_(Sligeach)> .
<http://data.logainm.ie/place/133207> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Inse> .
<http://data.logainm.ie/place/29215> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Seanbh\u00F3> .
<http://data.logainm.ie/place/1412417> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tigh_Moling> .
<http://data.logainm.ie/place/1411738> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Inbhir> .
<http://data.logainm.ie/place/1166661> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Sciobair\u00EDn> .
<http://data.logainm.ie/place/1414426> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_Conaire> .
<http://data.logainm.ie/place/134153> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Leithcheathr\u00FA> .
<http://data.logainm.ie/place/18905> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_M\u00F3> .
<http://data.logainm.ie/place/1411648> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oirthear_Ma\u00ED> .
<http://data.logainm.ie/place/1411653> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_gCaol> .
<http://data.logainm.ie/place/30331> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maothail> .
<http://data.logainm.ie/place/1411885> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_an_Chomair> .
<http://data.logainm.ie/place/1165838> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Maol_R\u00E9idh> .
<http://data.logainm.ie/place/1411920> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leithghlinn_an_Droichid> .
<http://data.logainm.ie/place/55944> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tigh_na_h\u00C9ille> .
<http://data.logainm.ie/place/1413965> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_M\u00F3ta> .
<http://data.logainm.ie/place/20886> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Uachtar_Ard> .
<http://data.logainm.ie/place/1414411> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_Vioc\u00E1ire> .
<http://data.logainm.ie/place/1166741> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Sliabh_M\u00F3r> .
<http://data.logainm.ie/place/35995> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Daighin> .
<http://data.logainm.ie/place/17634> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_Eascrach> .
<http://data.logainm.ie/place/28556> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/M\u00F3inteach_M\u00EDlic> .
<http://data.logainm.ie/place/1411964> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_Cinn> .
<http://data.logainm.ie/place/35617> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_tSr\u00E1id> .
<http://data.logainm.ie/place/136071> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_na_nAlbanach> .
<http://data.logainm.ie/place/63411> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fionntamhnach> .
<http://data.logainm.ie/place/1166859> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Turlach_M\u00F3r> .
<http://data.logainm.ie/place/1416333> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Baile_M\u00F3r,_Contae_Chill_Dara> .
<http://data.logainm.ie/place/1411917> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_na_nGall> .
<http://data.logainm.ie/place/36772> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_Muice> .
<http://data.logainm.ie/place/8648> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_Faoide> .
<http://data.logainm.ie/place/1412432> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Fearann_Fuar> .
<http://data.logainm.ie/place/1414428> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Chl\u00E1ir> .
<http://data.logainm.ie/place/1414015> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Learga_U\u00ED_Dh\u00F3naill> .
<http://data.logainm.ie/place/1165094> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Dothra> .
<http://data.logainm.ie/place/1414014> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coillte_Clochair> .
<http://data.logainm.ie/place/1413598> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leitir_Meall\u00E1in> .
<http://data.logainm.ie/place/67211> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Chuillinn> .
<http://data.logainm.ie/place/25367> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_Cloch> .
<http://data.logainm.ie/place/22651> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cathair_B\u00F3_Sine> .
<http://data.logainm.ie/place/14058> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Cionnaola> .
<http://data.logainm.ie/place/1413079> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cionn_Caslach> .
<http://data.logainm.ie/place/1411727> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_Chnoc_Muaidhe> .
<http://data.logainm.ie/place/18074> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Conaola> .
<http://data.logainm.ie/place/1413454> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_Daingin> .
<http://data.logainm.ie/place/14525> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Rann_na_Feirste> .
<http://data.logainm.ie/place/24123> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leic_Sn\u00E1mha> .
<http://data.logainm.ie/place/7084> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_D\u00FAn_Beag> .
<http://data.logainm.ie/place/14342> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Craoslach> .
<http://data.logainm.ie/place/1412428> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cloch\u00E1n_(Contae_Chiarra\u00ED)> .
<http://data.logainm.ie/place/1395970> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_Finne> .
<http://data.logainm.ie/place/14052> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhroclais> .
<http://data.logainm.ie/place/14144> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Lathaigh> .
<http://data.logainm.ie/place/38671> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Cheantaigh> .
<http://data.logainm.ie/place/17099> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Saileach> .
<http://data.logainm.ie/place/15649> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Main\u00E9ar_U\u00ED_Chuinneag\u00E1in> .
<http://data.logainm.ie/place/133202> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Bh\u00F3thair> .
<http://data.logainm.ie/place/39075> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Dealga> .
<http://data.logainm.ie/place/1411927> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cionn_Locha> .
<http://data.logainm.ie/place/132329> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00D3_M\u00E9ith> .
<http://data.logainm.ie/place/38954> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Dearmha\u00ED> .
<http://data.logainm.ie/place/31374> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_U\u00ED_Chonaill> .
<http://data.logainm.ie/place/28571> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maighean_R\u00E1tha> .
<http://data.logainm.ie/place/1413962> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Li\u00FAcainne> .
<http://data.logainm.ie/place/1413854> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Baile_Fionn> .
<http://data.logainm.ie/place/27779> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_an_R\u00F3ine> .
<http://data.logainm.ie/place/48789> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Imleach_Iubhair> .
<http://data.logainm.ie/place/1166073> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Durr\u00E1s> .
<http://data.logainm.ie/place/128230> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_She\u00E1in,_Contae_Chill_Chainnigh> .
<http://data.logainm.ie/place/9142> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_\u00D3_gCairbre> .
<http://data.logainm.ie/place/27577> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muileann_an_Bhata> .
<http://data.logainm.ie/place/1412365> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tulach_Ru\u00E1in> .
<http://data.logainm.ie/place/1412764> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_hAora\u00ED> .
<http://data.logainm.ie/place/13467> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_G\u00F3il\u00EDn> .
<http://data.logainm.ie/place/47363> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bh\u00E1inseach> .
<http://data.logainm.ie/place/129420> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_an_Cheasaigh> .
<http://data.logainm.ie/place/52998> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_C\u00FAirte,_Contae_Loch_Garman> .
<http://data.logainm.ie/place/1411882> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_Bin\u00E9id> .
<http://data.logainm.ie/place/9292> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gleann_Maghair> .
<http://data.logainm.ie/place/9231> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Garbh\u00E1in> .
<http://data.logainm.ie/place/1412345> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_H\u00E9il> .
<http://data.logainm.ie/place/1411252> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_\u00C1tha,_Contae_Thiobraid_\u00C1rann> .
<http://data.logainm.ie/place/1165388> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Choite> .
<http://data.logainm.ie/place/35402> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceathr\u00FA_Thaidhg> .
<http://data.logainm.ie/place/35601> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_Bhearaigh> .
<http://data.logainm.ie/place/35625> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Br\u00E9achmhaigh> .
<http://data.logainm.ie/place/1413969> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_Chaisle\u00E1n_Loiste> .
<http://data.logainm.ie/place/1411746> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_T\u00ED_an_Mheasaigh> .
<http://data.logainm.ie/place/1412381> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Mhurch\u00FA> .
<http://data.logainm.ie/place/1412383> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Mh\u00F3r> .
<http://data.logainm.ie/place/30102> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_\u00C1lainn> .
<http://data.logainm.ie/place/34341> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caorthann\u00E1n> .
<http://data.logainm.ie/place/1413912> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Conga> .
<http://data.logainm.ie/place/1411894> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_ar_Sn\u00E1mh> .
<http://data.logainm.ie/place/1412389> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Urna\u00ED> .
<http://data.logainm.ie/place/1413918> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceis_Charraig\u00EDn> .
<http://data.logainm.ie/place/1375249> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_gCarraig\u00EDn\u00ED> .
<http://data.logainm.ie/place/1411918> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Damh\u00E1in> .
<http://data.logainm.ie/place/45882> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cloch_Shiurd\u00E1in> .
<http://data.logainm.ie/place/16677> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gr\u00E1inseach_an_D\u00E9in> .
<http://data.logainm.ie/place/1165012> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Blaic> .
<http://data.logainm.ie/place/34924> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sruthair> .
<http://data.logainm.ie/place/29685> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Caorthainn> .
<http://data.logainm.ie/place/1166101> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Fhairche> .
<http://data.logainm.ie/place/54798> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_T\u00E9ag\u00E1in> .
<http://data.logainm.ie/place/55475> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_na_Fuinseoige> .
<http://data.logainm.ie/place/134161> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Seanbhaile> .
<http://data.logainm.ie/place/54704> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Lu\u00E1in> .
<http://data.logainm.ie/place/44510> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Goirt\u00EDn> .
<http://data.logainm.ie/place/7046> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mullach> .
<http://data.logainm.ie/place/1414437> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_na_C\u00FAile> .
<http://data.logainm.ie/place/7746> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Bheol\u00E1in> .
<http://data.logainm.ie/place/51477> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bealach_an_Tirialaigh> .
<http://data.logainm.ie/place/31347> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cheapach_Mh\u00F3r> .
<http://data.logainm.ie/place/1166578> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Pont_Abhann> .
<http://data.logainm.ie/place/19774> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Creachmhaoil> .
<http://data.logainm.ie/place/134412> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_Tr\u00E1> .
<http://data.logainm.ie/place/55993> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/T\u00EDr_an_I\u00FAir> .
<http://data.logainm.ie/place/134438> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ghaobhach> .
<http://data.logainm.ie/place/1414479> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tuar_Loistre\u00E1in> .
<http://data.logainm.ie/place/123635> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Garra\u00ED_U\u00ED_Speal\u00E1in> .
<http://data.logainm.ie/place/1414425> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tuilsce> .
<http://data.logainm.ie/place/55250> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chlais> .
<http://data.logainm.ie/place/1414448> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Ghlas> .
<http://data.logainm.ie/place/1165016> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_L\u00E1ithreach> .
<http://data.logainm.ie/place/131024> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sraith_Salach> .
<http://data.logainm.ie/place/45642> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAil_\u00C1ine> .
<http://data.logainm.ie/place/55313> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chrois_Dhearg> .
<http://data.logainm.ie/place/55825> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carn_an_Bhua> .
<http://data.logainm.ie/place/1371589> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fionnghlas> .
<http://data.logainm.ie/place/55846> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_Eanaigh> .
<http://data.logainm.ie/place/44390> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_Chrochaire> .
<http://data.logainm.ie/place/55674> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_T\u00F3char,_Cill_Mhant\u00E1in> .
<http://data.logainm.ie/place/45753> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tobar_an_Choire> .
<http://data.logainm.ie/place/128801> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_na_mB\u00F3> .
<http://data.logainm.ie/place/55036> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Deilgne> .
<http://data.logainm.ie/place/1413902> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_M\u00F3r> .
<http://data.logainm.ie/place/42879> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corr_an_Tobair> .
<http://data.logainm.ie/place/1411880> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_Ragad> .
<http://data.logainm.ie/place/43271> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bealach_an_Doir\u00EDn> .
<http://data.logainm.ie/place/9262> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhlarna> .
<http://data.logainm.ie/place/1414612> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_Liag> .
<http://data.logainm.ie/place/127908> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_P\u00F3il> .
<http://data.logainm.ie/place/1413571> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corr_na_M\u00F3na> .
<http://data.logainm.ie/place/16648> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gleann_Cuilinn_(Baile_\u00C1tha_Cliath)> .
<http://data.logainm.ie/place/1166694> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Siopa_Dubh> .
<http://data.logainm.ie/place/1413946> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muine_Mhe\u00E1> .
<http://data.logainm.ie/place/1411306> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cionn_Eitigh> .
<http://data.logainm.ie/place/1166851> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Tulach\u00E1n> .
<http://data.logainm.ie/place/1411605> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Naoi> .
<http://data.logainm.ie/place/1375331> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tuar_Mhic_\u00C9adaigh> .
<http://data.logainm.ie/place/36864> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achadh_Ghobhair> .
<http://data.logainm.ie/place/25391> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Choca> .
<http://data.logainm.ie/place/3760> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_an_R\u00ED> .
<http://data.logainm.ie/place/22578> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Blascaod_M\u00F3r> .
<http://data.logainm.ie/place/132917> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/P\u00E1rtra\u00ED> .
<http://data.logainm.ie/place/44309> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00FAscaigh> .
<http://data.logainm.ie/place/1411912> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Soll\u00E1in> .
<http://data.logainm.ie/place/1167040> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fiodh_Al\u00FAine> .
<http://data.logainm.ie/place/1393750> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceann_Tr\u00E1> .
<http://data.logainm.ie/place/1413453> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bearna> .
<http://data.logainm.ie/place/42060> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/G\u00E9isill> .
<http://data.logainm.ie/place/16796> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Domhnach_Bat> .
<http://data.logainm.ie/place/6447> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_Abhann_U\u00ED_gCearnaigh> .
<http://data.logainm.ie/place/55703> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Droma> .
<http://data.logainm.ie/place/1413905> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Boc\u00F3id> .
<http://data.logainm.ie/place/37768> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Aodha> .
<http://data.logainm.ie/place/53348> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Canann> .
<http://data.logainm.ie/place/25373> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Liamhain> .
<http://data.logainm.ie/place/42911> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Airgnigh> .
<http://data.logainm.ie/place/8333> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_Leice> .
<http://data.logainm.ie/place/51378> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1ist\u00EDn> .
<http://data.logainm.ie/place/54683> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Ard> .
<http://data.logainm.ie/place/66141> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceathr\u00FA_Aodha_Dhuibh> .
<http://data.logainm.ie/place/18402> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chiar\u00E1in> .
<http://data.logainm.ie/place/45079> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAil_Mhuine> .
<http://data.logainm.ie/place/55530> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chomhghaill> .
<http://data.logainm.ie/place/128824> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Grian\u00E1n> .
<http://data.logainm.ie/place/1167108> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_an_Urchair> .
<http://data.logainm.ie/place/135326> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chormaic> .
<http://data.logainm.ie/place/1412421> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Sceilg> .
<http://data.logainm.ie/place/22350> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Coire\u00E1n> .
<http://data.logainm.ie/place/125001> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Daingean,_Co._U\u00EDbh_Fhail\u00ED> .
<http://data.logainm.ie/place/1166781> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Stua_Laighean> .
<http://data.logainm.ie/place/120054> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Cr\u00FAibe> .
<http://data.logainm.ie/place/45275> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ros,_Co._Shligigh> .
<http://data.logainm.ie/place/51296> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_gCailleach> .
<http://data.logainm.ie/place/1167005> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Luach_Maigh> .
<http://data.logainm.ie/place/1165462> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_Lobhar> .
<http://data.logainm.ie/place/1413952> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ghr\u00E1ig> .
<http://data.logainm.ie/place/22598> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_na_Caithne> .
<http://data.logainm.ie/place/11822> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Drom_Ath\u00E1in> .
<http://data.logainm.ie/place/1414153> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mainistir_Leathr\u00E1tha> .
<http://data.logainm.ie/place/9208> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chollaigh> .
<http://data.logainm.ie/place/25775> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chorrchoill> .
<http://data.logainm.ie/place/44407> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_na_mBuill\u00ED> .
<http://data.logainm.ie/place/44851> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Iascaigh> .
<http://data.logainm.ie/place/36686> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Moibh\u00ED> .
<http://data.logainm.ie/place/1413567> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cloigeann> .
<http://data.logainm.ie/place/3509> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chill\u00EDn> .
<http://data.logainm.ie/place/1412542> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_an_Chabhaltaigh> .
<http://data.logainm.ie/place/15198> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fathain> .
<http://data.logainm.ie/place/13776> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_tSratha> .
<http://data.logainm.ie/place/12218> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_Martra> .
<http://data.logainm.ie/place/28095> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Domhnaigh> .
<http://data.logainm.ie/place/12142> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Seangharra\u00ED> .
<http://data.logainm.ie/place/1166662> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Scoil> .
<http://data.logainm.ie/place/15144> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Baile_Nua> .
<http://data.logainm.ie/place/12188> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_Thuathail> .
<http://data.logainm.ie/place/53647> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_an_Chaisle\u00E1in> .
<http://data.logainm.ie/place/7407> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chreatlach> .
<http://data.logainm.ie/place/1412757> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cruach\u00E1n> .
<http://data.logainm.ie/place/1412698> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_hAilich\u00ED> .
<http://data.logainm.ie/place/1166582> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Tulach_Sheasta> .
<http://data.logainm.ie/place/9310> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Rinn_an_Scidigh> .
<http://data.logainm.ie/place/127102> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Ghainimh> .
<http://data.logainm.ie/place/132919> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Dumhach> .
<http://data.logainm.ie/place/1412147> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Mhuilinn_(Baile_\u00C1tha_Cliath)> .
<http://data.logainm.ie/place/31022> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mocheall\u00F3g> .
<http://data.logainm.ie/place/1167086> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fearann_U\u00ED_Chearnaigh> .
<http://data.logainm.ie/place/30830> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Br\u00FA> .
<http://data.logainm.ie/place/1411913> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Teach_Sraf\u00E1in> .
<http://data.logainm.ie/place/12253> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain> .
<http://data.logainm.ie/place/1167100> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Gar> .
<http://data.logainm.ie/place/38251> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_nEalta> .
<http://data.logainm.ie/place/1167082> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Mullach_M\u00F3r> .
<http://data.logainm.ie/place/45224> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Easa_Dara> .
<http://data.logainm.ie/place/38531> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Steach_Maoil\u00EDn> .
<http://data.logainm.ie/place/127085> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Phib> .
<http://data.logainm.ie/place/20817> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leitir_M\u00F3ir> .
<http://data.logainm.ie/place/1411932> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_Fhearta> .
<http://data.logainm.ie/place/22580> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_na_Br\u00F3> .
<http://data.logainm.ie/place/22146> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Beiginis> .
<http://data.logainm.ie/place/1411750> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Eo> .
<http://data.logainm.ie/place/41331> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_F\u00E9ar_B\u00E1n> .
<http://data.logainm.ie/place/113140> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mullach_Cliabh\u00E1in> .
<http://data.logainm.ie/place/1411872> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Teach_Sagard> .
<http://data.logainm.ie/place/17192> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Rath_C\u00FAil> .
<http://data.logainm.ie/place/1411902> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_na_nUrlainn> .
<http://data.logainm.ie/place/34600> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Chuim\u00EDn> .
<http://data.logainm.ie/place/8795> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Chaisle\u00E1in_Bh\u00E9arra> .
<http://data.logainm.ie/place/1412786> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Sionnach> .
<http://data.logainm.ie/place/1413971> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_Coille_(Contae_Laoise)> .
<http://data.logainm.ie/place/17458> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Teach_Meal\u00F3g> .
<http://data.logainm.ie/place/7777> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Scairbh> .
<http://data.logainm.ie/place/15379> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Maine> .
<http://data.logainm.ie/place/28703> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Buir\u00EDos_M\u00F3r_Osra\u00ED> .
<http://data.logainm.ie/place/11184> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_an_T\u00E1bhairne> .
<http://data.logainm.ie/place/18783> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Cuilinn> .
<http://data.logainm.ie/place/33611> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_L\u00E9ire> .
<http://data.logainm.ie/place/1412426> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cathair_Dh\u00F3naill> .
<http://data.logainm.ie/place/22500> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_Ghriaire> .
<http://data.logainm.ie/place/30635> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cromadh> .
<http://data.logainm.ie/place/39164> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Cairn> .
<http://data.logainm.ie/place/38299> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Obair> .
<http://data.logainm.ie/place/1411931> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Liatroim> .
<http://data.logainm.ie/place/57184> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Maonais> .
<http://data.logainm.ie/place/28232> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Sr\u00E1idbhaile_(Laois)> .
<http://data.logainm.ie/place/131005> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_M\u00E1m> .
<http://data.logainm.ie/place/1165967> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cuas_an_Ghainimh> .
<http://data.logainm.ie/place/1412546> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cuar_an_Chl\u00E1ir> .
<http://data.logainm.ie/place/1412374> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Daingin> .
<http://data.logainm.ie/place/110085> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_C\u00E9> .
<http://data.logainm.ie/place/1381858> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Faiche_an_Chol\u00E1iste> .
<http://data.logainm.ie/place/1411666> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill\u00EDn_Ch\u00E9ir> .
<http://data.logainm.ie/place/128858> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Droichead_Adhmaid> .
<http://data.logainm.ie/place/1411198> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Binn_Liath> .
<http://data.logainm.ie/place/1411192> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00E9im_na_mBul\u00F3g> .
<http://data.logainm.ie/place/49885> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceapach_Choinn> .
<http://data.logainm.ie/place/1414034> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caladh_an_Treoigh> .
<http://data.logainm.ie/place/10346> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Conaithe> .
<http://data.logainm.ie/place/113048> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_an_Chodaigh> .
<http://data.logainm.ie/place/1412424> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_Eileg\u00F3id> .
<http://data.logainm.ie/place/1411199> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Clocharnach> .
<http://data.logainm.ie/place/5687> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Eachinis> .
<http://data.logainm.ie/place/1165974> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ch\u00FAil,_Contae_na_hIarmh\u00ED> .
<http://data.logainm.ie/place/113044> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_na_Sliog\u00E1n> .
<http://data.logainm.ie/place/1165924> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cruach\u00E1n_U\u00ED_Chinnsealaigh> .
<http://data.logainm.ie/place/1383382> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Dh\u00E1sain> .
<http://data.logainm.ie/place/113071> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Dubh> .
<http://data.logainm.ie/place/1166411> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_T\u00E9> .
<http://data.logainm.ie/place/1166738> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Me\u00E1in> .
<http://data.logainm.ie/place/113192> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00D3_Cualann> .
<http://data.logainm.ie/place/113122> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Giolspar> .
<http://data.logainm.ie/place/113100> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droibh\u00E9al,> .
<http://data.logainm.ie/place/113198> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/T\u00F3in_le_Gaoith> .
<http://data.logainm.ie/place/1165539> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Binn_Tr\u00ED_Charraig> .
<http://data.logainm.ie/place/1383466> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_L\u00EDosain> .
<http://data.logainm.ie/place/1413256> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_an_tS\u00FAdaire> .
<http://data.logainm.ie/place/111241> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Iascaigh> .
<http://data.logainm.ie/place/26245> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Lamra\u00ED> .
<http://data.logainm.ie/place/113137> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/M\u00F3in_Bh\u00E1n> .
<http://data.logainm.ie/place/1412967> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Croithl\u00ED> .
<http://data.logainm.ie/place/105051> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Saile\u00E1n> .
<http://data.logainm.ie/place/55864> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_C\u00FAl_Bu\u00ED> .
<http://data.logainm.ie/place/1381147> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cearn\u00F3g_Parnell> .
<http://data.logainm.ie/place/1381129> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cearn\u00F3g_Mhuinseo> .
<http://data.logainm.ie/place/113174> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Su\u00ED_Fingain> .
<http://data.logainm.ie/place/1390346> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Naomh_P\u00E1draig> .
<http://data.logainm.ie/place/135126> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tulaigh_\u00D3g> .
<http://data.logainm.ie/place/1166368> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Gamhna> .
<http://data.logainm.ie/place/1383359> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Chill_Dara> .
<http://data.logainm.ie/place/16243> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Halla_an_Phoirt> .
<http://data.logainm.ie/place/1165547> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhograch> .
<http://data.logainm.ie/place/15621> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Ardagh> .
<http://data.logainm.ie/place/15047> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_Brachai> .
<http://data.logainm.ie/place/1414186> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_D\u00E1_R\u00E1th> .
<http://data.logainm.ie/place/1165854> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Doire_na_Sagart> .
<http://data.logainm.ie/place/1381125> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cearn\u00F3g_Mhic_Liam> .
<http://data.logainm.ie/place/13016> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Arc\u00E1in> .
<http://data.logainm.ie/place/15465> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/M\u00EDn_an_L\u00E1b\u00E1in> .
<http://data.logainm.ie/place/127101> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Naig\u00EDn> .
<http://data.logainm.ie/place/23658> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Mhuilinn_(Ciarra\u00ED)> .
<http://data.logainm.ie/place/37186> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_\u00C9ada\u00ED> .
<http://data.logainm.ie/place/17510> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Glas_Tuathail> .
<http://data.logainm.ie/place/11222> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_an_Droichid> .
<http://data.logainm.ie/place/26548> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_M\u00F3in\u00EDn_Rua> .
<http://data.logainm.ie/place/50561> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Clais_Mh\u00F3r> .
<http://data.logainm.ie/place/35406> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Ghallag\u00E1in> .
<http://data.logainm.ie/place/11913> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Cear\u00FAill> .
<http://data.logainm.ie/place/1412430> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dubh\u00E1th> .
<http://data.logainm.ie/place/36487> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Both\u00F3la> .
<http://data.logainm.ie/place/1166132> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fionnbhr\u00FA> .
<http://data.logainm.ie/place/49053> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_Mhic_Thom\u00E1is\u00EDn> .
<http://data.logainm.ie/place/24645> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caisle\u00E1n_na_Mainge> .
<http://data.logainm.ie/place/1166434> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Magairl\u00ED_an_Deamhain> .
<http://data.logainm.ie/place/1166391> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Meilbhe> .
<http://data.logainm.ie/place/1166330> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Beag> .
<http://data.logainm.ie/place/1165527> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Binn_Bh\u00E1n> .
<http://data.logainm.ie/place/1167038> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_an_I\u00FAir> .
<http://data.logainm.ie/place/1412543> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_an_Chl\u00E1ir> .
<http://data.logainm.ie/place/1371614> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Mhuirfean> .
<http://data.logainm.ie/place/52328> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Abhainn_Dubh> .
<http://data.logainm.ie/place/1412434> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fionn\u00F3g> .
<http://data.logainm.ie/place/16054> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_D\u00FAnaibh> .
<http://data.logainm.ie/place/1411688> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Eilt\u00EDn> .
<http://data.logainm.ie/place/1411661> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Bharr\u00F3g> .
<http://data.logainm.ie/place/1165836> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_L\u00EDn> .
<http://data.logainm.ie/place/1166497> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Muileann_Iarainn> .
<http://data.logainm.ie/place/1166504> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muisire_M\u00F3r> .
<http://data.logainm.ie/place/114342> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/N\u00E9ifinn_Bheag> .
<http://data.logainm.ie/place/114356> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Phartra\u00ED> .
<http://data.logainm.ie/place/16606> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Deilginis_(oile\u00E1n)> .
<http://data.logainm.ie/place/114219> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gleann_na_Muaidhe> .
<http://data.logainm.ie/place/34295> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corr_R\u00E1ithe> .
<http://data.logainm.ie/place/1412694> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Caol> .
<http://data.logainm.ie/place/17391> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cloig\u00EDn_Gorm> .
<http://data.logainm.ie/place/1413858> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Domhnach_M\u00F3r_(Contae_Laoise)> .
<http://data.logainm.ie/place/49439> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Eaglais> .
<http://data.logainm.ie/place/1411897> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/M\u00F3in_Choinn> .
<http://data.logainm.ie/place/1166029> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Domhnach_M\u00EDde> .
<http://data.logainm.ie/place/27020> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Ph\u00F3il> .
<http://data.logainm.ie/place/37923> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maol_Hosae> .
<http://data.logainm.ie/place/50039> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1dh_Mhe\u00E1in> .
<http://data.logainm.ie/place/42616> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Droim> .
<http://data.logainm.ie/place/1414593> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_Abha> .
<http://data.logainm.ie/place/1414397> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_na_mBreatnach> .
<http://data.logainm.ie/place/128248> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_St\u00FAin> .
<http://data.logainm.ie/place/54861> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Briot\u00E1is> .
<http://data.logainm.ie/place/45431> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ghr\u00E1inseach> .
<http://data.logainm.ie/place/52250> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_tAbhallort> .
<http://data.logainm.ie/place/7169> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mhich\u00EDl> .
<http://data.logainm.ie/place/35565> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oireadh> .
<http://data.logainm.ie/place/1165534> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Binn_Fhoibhne> .
<http://data.logainm.ie/place/1166752> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Thigh_Br\u00F3d\u00E1in> .
<http://data.logainm.ie/place/113134> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/M\u00E1lainn_(sliabh)> .
<http://data.logainm.ie/place/104309> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Call\u00E1in> .
<http://data.logainm.ie/place/1166060> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dubhais> .
<http://data.logainm.ie/place/45185> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_Beannchar> .
<http://data.logainm.ie/place/1412560> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_na_M\u00F3na> .
<http://data.logainm.ie/place/38458> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Muir\u00ED> .
<http://data.logainm.ie/place/38644> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Ghib> .
<http://data.logainm.ie/place/1414331> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cr\u00EDonchoill> .
<http://data.logainm.ie/place/1414289> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhic_\u00C1daim> .
<http://data.logainm.ie/place/8060> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_na_hOmna\u00ED> .
<http://data.logainm.ie/place/6973> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_an_D\u00EDsirt> .
<http://data.logainm.ie/place/1411680> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_T\u00F3chair> .
<http://data.logainm.ie/place/1412554> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Bheathach> .
<http://data.logainm.ie/place/132909> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chrois> .
<http://data.logainm.ie/place/35276> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Gluaire> .
<http://data.logainm.ie/place/1166721> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_Coimh\u00E9ideach> .
<http://data.logainm.ie/place/67262> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sliabh_an_Airgid> .
<http://data.logainm.ie/place/1166993> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bl\u00E9inigh> .
<http://data.logainm.ie/place/1413350> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bealach_na_Leice> .
<http://data.logainm.ie/place/130614> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Clabaigh> .
<http://data.logainm.ie/place/1413349> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Chaiside> .
<http://data.logainm.ie/place/1413360> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Doire_Loinn> .
<http://data.logainm.ie/place/1413430> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Leac> .
<http://data.logainm.ie/place/1413433> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Leitir_Bhru\u00EDn> .
<http://data.logainm.ie/place/1166816> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Tigh_M\u00F3r> .
<http://data.logainm.ie/place/1413434> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Niadh> .
<http://data.logainm.ie/place/118083> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Trost\u00E1n> .
<http://data.logainm.ie/place/1166811> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Teampall_Uachtarach> .
<http://data.logainm.ie/place/1165383> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_\u00D3_bhFicheallaigh> .
<http://data.logainm.ie/place/47916> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ard_Fh\u00EDon\u00E1in> .
<http://data.logainm.ie/place/12294> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_Fhada> .
<http://data.logainm.ie/place/26526> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Mhuic\u00ED> .
<http://data.logainm.ie/place/1414630> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Achair> .
<http://data.logainm.ie/place/41390> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_\u00C1tha_Bu\u00ED,_Contae_U\u00EDbh_Fhail\u00ED> .
<http://data.logainm.ie/place/53588> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Choile\u00E1in> .
<http://data.logainm.ie/place/41140> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_Chomair> .
<http://data.logainm.ie/place/52819> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Chonnmha\u00ED> .
<http://data.logainm.ie/place/1413867> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Chearnaigh> .
<http://data.logainm.ie/place/50948> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bealach_Caorthainn> .
<http://data.logainm.ie/place/1414491> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Chom\u00E1in> .
<http://data.logainm.ie/place/1411972> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Londraigh> .
<http://data.logainm.ie/place/49690> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Fhlaithn\u00EDn> .
<http://data.logainm.ie/place/67165> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_L\u00FAbaigh> .
<http://data.logainm.ie/place/1166982> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_Gra\u00ED> .
<http://data.logainm.ie/place/1412699> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_Daibhche> .
<http://data.logainm.ie/place/132006> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_Muc> .
<http://data.logainm.ie/place/1166946> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_na_Scairte> .
<http://data.logainm.ie/place/18053> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_hInse> .
<http://data.logainm.ie/place/9697> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Ghoirt\u00EDn> .
<http://data.logainm.ie/place/19313> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Doir\u00EDn> .
<http://data.logainm.ie/place/43309> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Locha,_Contae_Ros_Com\u00E1in> .
<http://data.logainm.ie/place/49360> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Rodaigh> .
<http://data.logainm.ie/place/10862> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_an_Spid\u00E9il> .
<http://data.logainm.ie/place/1416334> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_an_Tuair> .
<http://data.logainm.ie/place/53342> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Each> .
<http://data.logainm.ie/place/49798> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bun_Machan> .
<http://data.logainm.ie/place/53759> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ban\u00FA> .
<http://data.logainm.ie/place/38616> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Beigthigh> .
<http://data.logainm.ie/place/1414617> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_Muille> .
<http://data.logainm.ie/place/43408> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_\u00C1tha_na_gCarr> .
<http://data.logainm.ie/place/41624> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Breac\u00E1nach> .
<http://data.logainm.ie/place/1413877> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Br\u00ED> .
<http://data.logainm.ie/place/131823> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gr\u00E1inseach_I\u00FAir> .
<http://data.logainm.ie/place/1414288> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhrosnach,_Contae_U\u00EDbh_Fhail\u00ED> .
<http://data.logainm.ie/place/1165575> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhuaile_Dhubh> .
<http://data.logainm.ie/place/19694> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Boll\u00E1n> .
<http://data.logainm.ie/place/1414503> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc\u00E1n_an_\u00C9in_Fhinn> .
<http://data.logainm.ie/place/1165914> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Moin_an_Bhealaigh> .
<http://data.logainm.ie/place/49446> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Baile_Nua,_Contae_Phort_L\u00E1irge> .
<http://data.logainm.ie/place/1411980> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Gallbhaile> .
<http://data.logainm.ie/place/123634> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Garra\u00ED_Eoin> .
<http://data.logainm.ie/place/13200> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cuan_Dor> .
<http://data.logainm.ie/place/50866> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Glas\u00E1n> .
<http://data.logainm.ie/place/1414601> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ghr\u00E1insigh> .
<http://data.logainm.ie/place/33812> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Grianfort> .
<http://data.logainm.ie/place/12329> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Guairne> .
<http://data.logainm.ie/place/53872> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Cormaic> .
<http://data.logainm.ie/place/25877> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Eoin> .
<http://data.logainm.ie/place/1412356> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tobar_Eoin> .
<http://data.logainm.ie/place/38489> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Uabhair> .
<http://data.logainm.ie/place/1412091> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Lios> .
<http://data.logainm.ie/place/13027> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Draighneach> .
<http://data.logainm.ie/place/33554> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droim_Ineasclainn> .
<http://data.logainm.ie/place/1411074> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Bleisce> .
<http://data.logainm.ie/place/1165664> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chealtrach> .
<http://data.logainm.ie/place/128509> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chalbhaigh> .
<http://data.logainm.ie/place/53095> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cam_Eolaing> .
<http://data.logainm.ie/place/53344> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ceann_Phoill> .
<http://data.logainm.ie/place/1412754> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_an_Ime> .
<http://data.logainm.ie/place/1414599> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Charraig_Bheag> .
<http://data.logainm.ie/place/27819> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chaisle\u00E1in,_Contae_Laoise> .
<http://data.logainm.ie/place/1166180> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gleann_Bearch\u00E1in> .
<http://data.logainm.ie/place/1411741> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_Bheithne> .
<http://data.logainm.ie/place/8185> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Briot\u00E1in> .
<http://data.logainm.ie/place/1414144> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Dioma> .
<http://data.logainm.ie/place/1165629> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chaolchoill> .
<http://data.logainm.ie/place/19326> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Cholg\u00E1in> .
<http://data.logainm.ie/place/1412789> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_C\u00F3irne> .
<http://data.logainm.ie/place/1411743> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_na_S\u00ED> .
<http://data.logainm.ie/place/1414523> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Aodha,_Contae_Thiobraid_\u00C1rann> .
<http://data.logainm.ie/place/42145> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Aichidh> .
<http://data.logainm.ie/place/1414603> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mh\u00EDod\u00E1in> .
<http://data.logainm.ie/place/1411705> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mh\u00EDchil> .
<http://data.logainm.ie/place/1411895> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mhic_Bh\u00FAith> .
<http://data.logainm.ie/place/1413889> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mhucraise> .
<http://data.logainm.ie/place/37916> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_T\u00E1ile> .
<http://data.logainm.ie/place/48366> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Siol\u00E1in> .
<http://data.logainm.ie/place/1412197> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Caonach,_Contae_an_Longfoirt> .
<http://data.logainm.ie/place/135311> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cl\u00E1ir\u00EDn> .
<http://data.logainm.ie/place/53785> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_de_Cl\u00E9ir> .
<http://data.logainm.ie/place/11319> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Droichead> .
<http://data.logainm.ie/place/52381> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_an_R\u00F3istigh> .
<http://data.logainm.ie/place/1411767> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Ultaigh> .
<http://data.logainm.ie/place/8238> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cloch_Dhubh> .
<http://data.logainm.ie/place/134125> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_Fada> .
<http://data.logainm.ie/place/26075> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_Dubh> .
<http://data.logainm.ie/place/1414511> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Glaise_na_Ghuail> .
<http://data.logainm.ie/place/1414398> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Corr_na_Fola> .
<http://data.logainm.ie/place/131835> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Chorr\u00E1in> .
<http://data.logainm.ie/place/1411740> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Craobh_Chumhra> .
<http://data.logainm.ie/place/1413857> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Crochta_Ard> .
<http://data.logainm.ie/place/129497> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Crois_an_Bharraigh> .
<http://data.logainm.ie/place/1165918> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Crosa_Beaga> .
<http://data.logainm.ie/place/32048> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cruach,_Contae_Luimnigh> .
<http://data.logainm.ie/place/1166410> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_Tailt> .
<http://data.logainm.ie/place/49715> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/L\u00E9im_U\u00ED_Bhriain> .
<http://data.logainm.ie/place/32858> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Riain> .
<http://data.logainm.ie/place/1414531> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Ruanach> .
<http://data.logainm.ie/place/11898> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Lombaird> .
<http://data.logainm.ie/place/67231> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cloch_an_Mh\u00EDle> .
<http://data.logainm.ie/place/1375410> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Thamhnach> .
<http://data.logainm.ie/place/48550> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muileann_na_hUamhan> .
<http://data.logainm.ie/place/129588> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_na_mBocht> .
<http://data.logainm.ie/place/10742> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/\u00C1th_an_Mhuilinn> .
<http://data.logainm.ie/place/1411745> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_Dumha> .
<http://data.logainm.ie/place/135129> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Droichead_Victoria> .
<http://data.logainm.ie/place/49130> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maothail,_Contae_Phort_L\u00E1irge> .
<http://data.logainm.ie/place/1414551> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_tSalainn> .
<http://data.logainm.ie/place/40707> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/T\u00EDr_N\u00ED_N\u00E9ill> .
<http://data.logainm.ie/place/41022> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Seiscenn> .
<http://data.logainm.ie/place/1414200> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_na_Manach> .
<http://data.logainm.ie/place/50138> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_\u00D3ir> .
<http://data.logainm.ie/place/31817> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_Doire> .
<http://data.logainm.ie/place/31060> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Loinge> .
<http://data.logainm.ie/place/53513> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_B\u00E1bhun_Nua> .
<http://data.logainm.ie/place/1165470> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_N\u00EDos> .
<http://data.logainm.ie/place/1414018> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_D\u00FAcharraig> .
<http://data.logainm.ie/place/46734> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Baile_Nua,_Contae_Thiobraid_\u00C1rann> .
<http://data.logainm.ie/place/129171> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Muillte_U\u00ED_Cheallach\u00E1in> .
<http://data.logainm.ie/place/1382696> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/P\u00E1irc_Hoirbeaird> .
<http://data.logainm.ie/place/123640> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Pail\u00EDs_Ghr\u00E9ine> .
<http://data.logainm.ie/place/64716> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Coracha_M\u00F3ra> .
<http://data.logainm.ie/place/1414198> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Druim_Caoin> .
<http://data.logainm.ie/place/53967> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Daingin> .
<http://data.logainm.ie/place/39156> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_M\u00E1igh_Laighin> .
<http://data.logainm.ie/place/1414419> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Ara> .
<http://data.logainm.ie/place/51982> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/R\u00E1th_Fhearna> .
<http://data.logainm.ie/place/26379> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Tigh_Rua> .
<http://data.logainm.ie/place/1412899> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Raerainn> .
<http://data.logainm.ie/place/129615> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Abhainn_St\u00EDc> .
<http://data.logainm.ie/place/47905> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Faiche_R\u00F3> .
<http://data.logainm.ie/place/10564> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/S\u00E9ip\u00E9al_na_Carraige> .
<http://data.logainm.ie/place/53641> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ros_Bearrcon> .
<http://data.logainm.ie/place/1414538> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ros_M\u00F3r,_Contae_Thiobraid_\u00C1rann> .
<http://data.logainm.ie/place/1411914> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Crochta_na_Gr\u00E9ine> .
<http://data.logainm.ie/place/52081> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_tSruth\u00E1in> .
<http://data.logainm.ie/place/64433> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Seisceann_Odhar> .
<http://data.logainm.ie/place/1414339> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carn_tSiail> .
<http://data.logainm.ie/place/1165429> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Tall\u00FAnaigh> .
<http://data.logainm.ie/place/50294> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tulach_an_Iarainn> .
<http://data.logainm.ie/place/54474> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Teach_Munna> .
<http://data.logainm.ie/place/1411681> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Robhar> .
<http://data.logainm.ie/place/1414387> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/T\u00EDr_Dh\u00E1_Ghlas> .
<http://data.logainm.ie/place/1414152> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tuar_na_Fola> .
<http://data.logainm.ie/place/10943> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mh\u00F3nt\u00E1in> .
<http://data.logainm.ie/place/1166129> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fiodhnach> .
<http://data.logainm.ie/place/51180> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fiodh_an_\u00C1tha> .
<http://data.logainm.ie/place/44033> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fiodharta> .
<http://data.logainm.ie/place/33827> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Hagaird> .
<http://data.logainm.ie/place/1412354> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_hUg\u00FAin> .
<http://data.logainm.ie/place/1167041> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Hiobaird> .
<http://data.logainm.ie/place/1412073> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Seanghualainn> .
<http://data.logainm.ie/place/28736> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Eir\u00E9il> .
<http://data.logainm.ie/place/1393640> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_na_Mainistreach> .
<http://data.logainm.ie/place/1380206> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00F3thar_Aelsbaire> .
<http://data.logainm.ie/place/135706> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Andarsan> .
<http://data.logainm.ie/place/1380301> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00F3thar_Mon> .
<http://data.logainm.ie/place/1381447> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_Arbhair,_Contae_Bhaile_\u00C1tha_Cliath> .
<http://data.logainm.ie/place/31155> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Air\u00ED_Bhu\u00ED> .
<http://data.logainm.ie/place/1414613> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Tobair_(Ros_Com\u00E1in)> .
<http://data.logainm.ie/place/46603> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Arta\u00EDle> .
<http://data.logainm.ie/place/11856> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Cloch> .
<http://data.logainm.ie/place/27177> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Dh\u00E1ith> .
<http://data.logainm.ie/place/1414595> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Mhac_Cairbre> .
<http://data.logainm.ie/place/1412747> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Baile_Nua,_Contae_Chorca\u00ED> .
<http://data.logainm.ie/place/55520> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_R\u00F3n\u00E1in> .
<http://data.logainm.ie/place/1165477> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_U\u00ED_Sh\u00EDoda> .
<http://data.logainm.ie/place/15605> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Raithin> .
<http://data.logainm.ie/place/1411938> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_an_Ph\u00FAca> .
<http://data.logainm.ie/place/101038> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Binn_os_Gaoith> .
<http://data.logainm.ie/place/58998> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_C\u00FA> .
<http://data.logainm.ie/place/1412749> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00E9al_an_Bhealaigh> .
<http://data.logainm.ie/place/1414360> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Bhinn_Bhorb> .
<http://data.logainm.ie/place/1410888> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Binn_Chorr> .
<http://data.logainm.ie/place/114044> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Bir\u00EDn_Corrach> .
<http://data.logainm.ie/place/1166776> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Staighre_Dubh> .
<http://data.logainm.ie/place/1165825> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_Bhr\u00E9anail> .
<http://data.logainm.ie/place/36249> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Broic\u00EDn\u00ED> .
<http://data.logainm.ie/place/30836> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Br\u00FA_R\u00ED> .
<http://data.logainm.ie/place/1414505> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Ch\u00FAirt_D\u00F3ite> .
<http://data.logainm.ie/place/1412427> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cam> .
<http://data.logainm.ie/place/30653> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Carn\u00E1n> .
<http://data.logainm.ie/place/9336> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Carraig_na_bhFear> .
<http://data.logainm.ie/place/1165777> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Chloch,_Contae_Chill_Chainnigh> .
<http://data.logainm.ie/place/9561> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cloch_Reo> .
<http://data.logainm.ie/place/29145> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cluain_S\u00ED_B\u00E1n> .
<http://data.logainm.ie/place/129116> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/F\u00EDoch_Rua> .
<http://data.logainm.ie/place/55869> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAl_na_Fuinse> .
<http://data.logainm.ie/place/52954> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/C\u00FAil_Ghr\u00E9ine> .
<http://data.logainm.ie/place/1404638> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_an_Chruisigh> .
<http://data.logainm.ie/place/6169> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Crois\u00EDn> .
<http://data.logainm.ie/place/1165870> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Coirr\u00EDn\u00ED> .
<http://data.logainm.ie/place/127903> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Currach,_Contae_Chiarra\u00ED> .
<http://data.logainm.ie/place/1383248> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_an_D\u00E1ma> .
<http://data.logainm.ie/place/1381096> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cearn\u00F3g_Dartmouth> .
<http://data.logainm.ie/place/6879> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_Fia> .
<http://data.logainm.ie/place/1411769> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Eochaille> .
<http://data.logainm.ie/place/35444> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dumha_Locha> .
<http://data.logainm.ie/place/1414037> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tuar_an_Daill> .
<http://data.logainm.ie/place/33567> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Druim-caradh> .
<http://data.logainm.ie/place/11051> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Dun_Dar\u00FA> .
<http://data.logainm.ie/place/49681> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/D\u00FAn_Aill> .
<http://data.logainm.ie/place/35310> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_san_Tuaidh> .
<http://data.logainm.ie/place/1380281> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00F3thar_an_Phoirt_Thoir> .
<http://data.logainm.ie/place/1414039> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Eifinn> .
<http://data.logainm.ie/place/1411888> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Fiodh_D\u00FAin> .
<http://data.logainm.ie/place/23593> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Foidhr\u00ED> .
<http://data.logainm.ie/place/1383601> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Sheamlas_an_\u00C9isc> .
<http://data.logainm.ie/place/1413578> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Na_Garfr\u00E1in> .
<http://data.logainm.ie/place/9293> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Gleannt\u00E1n> .
<http://data.logainm.ie/place/1166158> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Garmna> .
<http://data.logainm.ie/place/1166221> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gr\u00E1inseach_Ghorm\u00E1in> .
<http://data.logainm.ie/place/25964> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_Fearainn,_Contae_Chill_Dara> .
<http://data.logainm.ie/place/1404729> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Anra\u00ED,_Luimneach> .
<http://data.logainm.ie/place/1380666> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/B\u00F3thar_Hoirbeaird> .
<http://data.logainm.ie/place/1383446> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Heytesbury> .
<http://data.logainm.ie/place/1165802> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cl\u00F3irtheach> .
<http://data.logainm.ie/place/18353> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_N\u00ED> .
<http://data.logainm.ie/place/18613> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Oile\u00E1n_Eide> .
<http://data.logainm.ie/place/135080> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill\u00EDn,_Contae_Th\u00EDr_Eoghain> .
<http://data.logainm.ie/place/1414262> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Coill_\u00CDochtair> .
<http://data.logainm.ie/place/38179> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mhaighneann,_Contae_na_M\u00ED> .
<http://data.logainm.ie/place/1412558> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_Mhaile> .
<http://data.logainm.ie/place/1414145> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_M\u00EDde> .
<http://data.logainm.ie/place/1165748> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cill_N\u00E1ile> .
<http://data.logainm.ie/place/1165811> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/An_Cnoc,_Contae_an_Chl\u00E1ir> .
<http://data.logainm.ie/place/1166412> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_T\u00F3chair> .
<http://data.logainm.ie/place/46925> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Lios_Caoimh\u00EDn> .
<http://data.logainm.ie/place/13528> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Inis_Fada_(Contae_Chorca\u00ED)> .
<http://data.logainm.ie/place/1166418> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_U\u00ED_Ghadhra> .
<http://data.logainm.ie/place/101302> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Loch_L\u00E9in> .
<http://data.logainm.ie/place/1165820> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Cnoc_an_Ois> .
<http://data.logainm.ie/place/1383478> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Mhaoilbhr\u00EDde> .
<http://data.logainm.ie/place/48301> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/P\u00E1irc_an_Mharla> .
<http://data.logainm.ie/place/1383494> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Sr\u00E1id_Mhuirfean> .
<http://data.logainm.ie/place/25811> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Mhuilinn,_Contae_Chill_Dara> .
<http://data.logainm.ie/place/14221> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tamhnach_an_tSalainn> .
<http://data.logainm.ie/place/1414273> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Maigh_gCaisil> .
<http://data.logainm.ie/place/113139> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mullach_Mh\u00F3r> .
<http://data.logainm.ie/place/122013> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Mullach_Cairn> .
<http://data.logainm.ie/place/11194> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Baile_an_Chuain\u00EDn> .
<http://data.logainm.ie/place/67237> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Gleann_an_Ghuail> .
<http://data.logainm.ie/place/1379634> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Ascaill_an_Droichid_Nua> .
<http://data.logainm.ie/place/1414535> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Tigh_na_Naoi_M\u00EDle> .
<http://data.logainm.ie/place/11178> <http://lexvo.org/ontology#nearlySameAs> <http://ga.dbpedia.org/resource/Nuachabh\u00E1il> .