tortank 0.30.7

Turtle/N3 parser
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag inschrijving op kiezerslijst """@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Goedkeuring en  gunning - Raamovereenkomst Werkkledij technische dienst """@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.europa.eu/eli/ontology#title> """38. Evenement: processie 's-Gravenvoeren -  02/06/2024""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.europa.eu/eli/ontology#title> """5. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel MOEL, sectie B , nr. 595H""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087> <http://purl.org/dc/terms/title> """33. Gebruik terrein Hoeneveldje""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162> <http://purl.org/dc/terms/title> """8. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B, nr. 167G
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085> <http://purl.org/dc/terms/title> """56. Akteneming melding terrasoverkapping - GAENS P - Amphora 8""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.europa.eu/eli/ontology#title> """7. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B , nr. 564S""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162>.
<http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4> <http://data.vlaanderen.be/ns/besluit#bestuurt> <http://data.lblod.info/id/bestuurseenheden/f39eb137cb5c9195f92928522bbbf0d104fb54be6eb0c9c62a24d16b88b44272>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.europa.eu/eli/ontology#title> """18. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1979K""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Vergunning: uitbreiding woning - LINDELAUF K - Teuven-Dorp 68"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.europa.eu/eli/ontology#title> """33. Gebruik terrein Hoeneveldje""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://data.europa.eu/eli/ontology#title> """53. AIB-Vinçotte - verslag periodieke keuring hef- en hijswerktuigen""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://purl.org/dc/terms/title> """6. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B, nr. 167G
""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1110M2"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.europa.eu/eli/ontology#description> """
                            Collector Teuvenbeek - vorderingsstaat 25
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.europa.eu/eli/ontology#title> """51. Vervanging van brandalarmcentrale van AC De Voor""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Vergunning: verbouwen horecapand - COLLINGS - Withuisstraat 2"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 457G
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Processie 's-Gravenvoeren 02/06/2024 'kamerschieten'"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146> <http://purl.org/dc/terms/title> """41. Evenement: kermis + jogging 03/08/2024 Remersdaal""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166> <http://purl.org/dc/terms/title> """12. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769K""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.europa.eu/eli/ontology#title> """21. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1981H
""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084> <http://purl.org/dc/terms/title> """49. Goedkeuring offerte ophalen landbouwfolie op betonplaat milieupark""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://www.w3.org/ns/prov#startedAtTime> """2024-05-16T14:00:00.0000000Z"""^^<http://www.w3.org/2001/XMLSchema#dateTime>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172> <http://purl.org/dc/terms/title> """18. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1979K""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182> <http://purl.org/dc/terms/title> """28. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://purl.org/dc/terms/title> """10. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 687L
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.europa.eu/eli/ontology#title> """17. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1979K""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1979K"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#isGehoudenDoor> <http://data.lblod.info/id/bestuursorganen/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://purl.org/dc/terms/title> """2. BTW - Aangifte stopzetting van de activiteiten""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135> <http://purl.org/dc/terms/title> """36. Evenement: processie Teuven 01/06/2024""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Bestuursorgaan>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155> <http://purl.org/dc/terms/description> """
                                Inrichting laadruimte camionette Ford Transit L3h2
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.europa.eu/eli/ontology#title_short> """Vervanging van brandalarmcentrale van AC De Voor""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#onderwerp> """ Evenement: Moto-cross Warsage, 27 en 28 juli 2024"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147> <http://purl.org/dc/terms/title> """42. Melding evenement: verjaardag 31/08/2024""".
<http://data.lblod.info/id/bestuursorganen/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Bestuursorgaan>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.europa.eu/eli/ontology#title_short> """""".
<http://data.lblod.info/id/bestuurseenheden/f39eb137cb5c9195f92928522bbbf0d104fb54be6eb0c9c62a24d16b88b44272> <http://www.w3.org/ns/org#classification> <http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000001>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.europa.eu/eli/ontology#title> """28. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B , nr. 564S"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.europa.eu/eli/ontology#title_short> """Kennisneming notulen Kerkbestuur 's Gravenvoeren -  vergadering 22 april 2024""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1110M2"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://purl.org/dc/terms/title> """35. Aanvraag inschrijving op kiezerslijst """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176> <http://purl.org/dc/terms/title> """22. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://purl.org/dc/terms/title> """3. Belasting voor het inzamelen en verwerken van huishoudelijke afvalstoffen: aanslagjaar 2024, kohier 1""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.europa.eu/eli/ontology#title> """16. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1110M2""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.europa.eu/eli/ontology#title> '''43. Proclim - kennisneming prijsherziening opdracht "Periodiek reinigen van gevel- en glaspartijen"'''.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167> <http://purl.org/dc/terms/title> """13. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769M
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153> <http://purl.org/dc/terms/title> """5. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel MOEL, sectie B , nr. 595H""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.europa.eu/eli/ontology#title> """55. Gebreken wegenis verkaveling Hoeneveldje en ingebrekestelling Matexi- compromis middels commerciële geste""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.europa.eu/eli/ontology#description> """
                            Vervanging van brandalarmcentrale van AC De Voor
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.europa.eu/eli/ontology#title> """20. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1981E
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175> <http://purl.org/dc/terms/title> """21. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1981H
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecb814824e2a481480ad84d1f660bf9b-23163>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152> <http://purl.org/dc/terms/title> """4. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel MOEL, sectie B, nr. 593A""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.europa.eu/eli/ontology#title> """45. Toetreding raamovereenkomst Creat voor tankkaarten""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://data.europa.eu/eli/ontology#title> """52. Inrichting laadruimte camionette Ford Transit L3h2""".
<http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4> <http://www.w3.org/2004/02/skos/core#prefLabel> """
                College van burgemeester en schepenen Gemeente Voeren
            """^^<http://www.w3.org/2000/01/rdf-schema#Literal>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://purl.org/dc/terms/title> """20. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1981E
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#geplandeStart> """2024-05-16T14:00:00.0000000Z"""^^<http://www.w3.org/2001/XMLSchema#dateTime>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.europa.eu/eli/ontology#title> """36. Evenement: processie Teuven 01/06/2024""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024.html> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169> <http://purl.org/dc/terms/title> """15. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1110M2""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.europa.eu/eli/ontology#title> """31. Processie 's-Gravenvoeren 02/06/2024 'kamerschieten'""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.europa.eu/eli/ontology#title> """42. Melding evenement: verjaardag 31/08/2024""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://purl.org/dc/terms/title> """34. Kampvervoer KLJ Teuven 2024""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.europa.eu/eli/ontology#title> """46. Toetreding raamovereenkomst met ANB voor bestrijding van de Aziatische hoornaar""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.europa.eu/eli/ontology#title> """29. Kennisneming notulen Kerkbestuur 's Gravenvoeren -  vergadering 22 april 2024""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://purl.org/dc/terms/title> """54. Collector Teuvenbeek - vorderingsstaat 25""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170> <http://purl.org/dc/terms/title> """16. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1110M2""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.europa.eu/eli/ontology#title> """37. Evenement:  voetbaltornooi & BBQ, SK Moelingen-Voeren""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://data.europa.eu/eli/ontology#title> """4. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel MOEL, sectie B, nr. 593A""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://data.europa.eu/eli/ontology#title> """8. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B, nr. 167G
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://data.europa.eu/eli/ontology#description> """
                            AIB-Vinçotte - verslag periodieke keuring hef- en hijswerktuigen
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://data.europa.eu/eli/ontology#title_short> """Inrichting laadruimte camionette Ford Transit L3h2""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://purl.org/dc/terms/title> """50. Goedkeuring uitschrijven van twee percelen uit jachtplan""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/8781144066924d97a921eec76c765bc1-23162>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://data.vlaanderen.be/id/concept/BesluitType/256bd04a-b74b-4f2a-8f5d-14dda4765af9>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<http://data.lblod.info/id/bestuursorganen/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517> <http://www.w3.org/2004/02/skos/core#prefLabel> """
                College van burgemeester en schepenen Gemeente Voeren
            """^^<http://www.w3.org/2000/01/rdf-schema#Literal>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.europa.eu/eli/ontology#title> """39. Evenement: Bronk 02/06/2024 's-Gravenvoeren""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#heeftBesluitenlijst> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024.html>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://purl.org/dc/terms/title> """7. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B , nr. 564S""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005> <http://purl.org/dc/terms/title> """48. Goedkeuring factuur : herstelling 2BWK041 - vrachtwagen Man""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://purl.org/dc/terms/title> """55. Gebreken wegenis verkaveling Hoeneveldje en ingebrekestelling Matexi- compromis middels commerciële geste""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.europa.eu/eli/ontology#title> """10. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 687L
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.europa.eu/eli/ontology#description> """
                            Toetreding raamovereenkomst met ANB voor bestrijding van de Aziatische hoornaar
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/6065C147FC620200080005DF>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.europa.eu/eli/ontology#title> """19. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1979T
""".
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769K"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024.html> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://purl.org/dc/terms/description> """
                                Collector Teuvenbeek - vorderingsstaat 25
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Mandaten"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165> <http://purl.org/dc/terms/title> """11. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 687M
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.europa.eu/eli/ontology#title> """25. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://purl.org/dc/terms/title> """51. Vervanging van brandalarmcentrale van AC De Voor""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140> <http://purl.org/dc/terms/title> """39. Evenement: Bronk 02/06/2024 's-Gravenvoeren""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.europa.eu/eli/ontology#description> """
                            Goedkeuring offerte ophalen landbouwfolie op betonplaat milieupark
                        """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Gebreken wegenis verkaveling Hoeneveldje en ingebrekestelling Matexi- compromis middels commerciële geste"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.europa.eu/eli/ontology#title> """2. BTW - Aangifte stopzetting van de activiteiten""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088> <http://purl.org/dc/terms/description> """
                                Goedkeuring en  gunning - Raamovereenkomst Werkkledij technische dienst 
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.europa.eu/eli/ontology#description> """
                            Kennisneming notulen Kerkbestuur 's Gravenvoeren -  vergadering 22 april 2024
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.europa.eu/eli/ontology#title> """1. Mandaten""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://purl.org/dc/terms/title> """30. Tijdelijke politieverordening op het Wegverkeer: Bronk 's-Gravenvoeren 02/06/2024""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Inrichting laadruimte camionette Ford Transit L3h2"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://purl.org/dc/terms/description> """
                                Goedkeuring uitschrijven van twee percelen uit jachtplan
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://data.europa.eu/eli/ontology#title_short> """AIB-Vinçotte - verslag periodieke keuring hef- en hijswerktuigen""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Toetreding raamovereenkomst Creat voor tankkaarten"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4> <http://www.w3.org/ns/org#classification> <http://data.vlaanderen.be/id/concept/BestuursorgaanClassificatieCode/5ab0e9b8a3b2ca7c5e000006>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.europa.eu/eli/ontology#title> """32. Vacantverklaring jobstudent allround technische dienst - groendienst - milieupark""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://purl.org/dc/terms/title> """40.  Evenement: Moto-cross Warsage, 27 en 28 juli 2024""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<http://data.vlaanderen.be/id/concept/BestuurseenheidClassificatieCode/5ab0e9b8a3b2ca7c5e000001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#onderwerp> """AIB-Vinçotte - verslag periodieke keuring hef- en hijswerktuigen"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.europa.eu/eli/ontology#title> """12. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769K""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168> <http://purl.org/dc/terms/title> """14. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769M
""".
<http://data.lblod.info/id/werkingsgebieden/22658498f757ed03025abf548124246f8a02276dec24911bea7fb90da0280b59> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/prov#Location>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.europa.eu/eli/ontology#description> """
                            Toetreding raamovereenkomst Creat voor tankkaarten
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769M
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://data.europa.eu/eli/ontology#description> """
                            Goedkeuring factuur : herstelling 2BWK041 - vrachtwagen Man
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090> <http://purl.org/dc/terms/title> """53. AIB-Vinçotte - verslag periodieke keuring hef- en hijswerktuigen""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 687L
"""@nl.
<http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/mandaat#Mandataris>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#onderwerp> """BTW - Aangifte stopzetting van de activiteiten"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.europa.eu/eli/ontology#title_short> """Toetreding raamovereenkomst Creat voor tankkaarten""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088>.
<http://data.lblod.info/id/bestuurseenheden/f39eb137cb5c9195f92928522bbbf0d104fb54be6eb0c9c62a24d16b88b44272> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Bestuurseenheid>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.europa.eu/eli/ontology#title> """23. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1981H
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://purl.org/dc/terms/title> """23. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186> <http://purl.org/dc/terms/title> """1. Mandaten""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Kennisgeving aankopen onder delegatie voor de maand: april 2024 - entiteit GEMEENTE"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Kampvervoer KLJ Teuven 2024"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://data.europa.eu/eli/ontology#title> """48. Goedkeuring factuur : herstelling 2BWK041 - vrachtwagen Man""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://data.europa.eu/eli/ontology#description> """
                            Inrichting laadruimte camionette Ford Transit L3h2
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005> <http://purl.org/dc/terms/description> """
                                Goedkeuring factuur : herstelling 2BWK041 - vrachtwagen Man
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Collector Teuvenbeek - vorderingsstaat 25"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.europa.eu/eli/ontology#title> """30. Tijdelijke politieverordening op het Wegverkeer: Bronk 's-Gravenvoeren 02/06/2024""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150> <http://purl.org/dc/terms/title> """44. Kennisgeving aankopen onder delegatie voor de maand: april 2024 - entiteit GEMEENTE""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://data.europa.eu/eli/ontology#title_short> """Goedkeuring factuur : herstelling 2BWK041 - vrachtwagen Man""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<http://data.vlaanderen.be/id/concept/BestuursorgaanClassificatieCode/5ab0e9b8a3b2ca7c5e000006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://www.w3.org/ns/prov#atLocation> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155> <http://purl.org/dc/terms/title> """52. Inrichting laadruimte camionette Ford Transit L3h2""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.europa.eu/eli/ontology#title> """22. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/6065C147FC620200080005DF>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Evenement: processie Teuven 01/06/2024"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Evenement:  voetbaltornooi & BBQ, SK Moelingen-Voeren"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.europa.eu/eli/ontology#title> """41. Evenement: kermis + jogging 03/08/2024 Remersdaal""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4> <http://data.vlaanderen.be/ns/mandaat#isTijdspecialisatieVan> <http://data.lblod.info/id/bestuursorganen/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.europa.eu/eli/ontology#title> """54. Collector Teuvenbeek - vorderingsstaat 25""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163> <http://purl.org/dc/terms/title> """9. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 457G
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090> <http://purl.org/dc/terms/description> """
                                AIB-Vinçotte - verslag periodieke keuring hef- en hijswerktuigen
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084> <http://purl.org/dc/terms/description> """
                                Goedkeuring offerte ophalen landbouwfolie op betonplaat milieupark
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134> <http://purl.org/dc/terms/title> """37. Evenement:  voetbaltornooi & BBQ, SK Moelingen-Voeren""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.europa.eu/eli/ontology#title> """40.  Evenement: Moto-cross Warsage, 27 en 28 juli 2024""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.europa.eu/eli/ontology#title> """6. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B, nr. 167G
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1979K"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://purl.org/dc/terms/title> """31. Processie 's-Gravenvoeren 02/06/2024 'kamerschieten'""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.europa.eu/eli/ontology#description> """
                            Goedkeuring uitschrijven van twee percelen uit jachtplan
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a28b599dda544a15a3e475a2c35d210c-23166> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Gebruik terrein Hoeneveldje"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://purl.org/dc/terms/description> """
                                Kennisneming notulen Kerkbestuur 's Gravenvoeren -  vergadering 22 april 2024
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://data.europa.eu/eli/ontology#title> """26. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bdbb944499b547a2823e04a924a71c67-23167> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://purl.org/dc/terms/title> """38. Evenement: processie 's-Gravenvoeren -  02/06/2024""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178> <http://purl.org/dc/terms/title> """24. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Zitting>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/1b8c95cea7544b5fb38713a2ee164322-23182>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/8781144066924d97a921eec76c765bc1-23162> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171> <http://purl.org/dc/terms/title> """17. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1979K""".
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://purl.org/dc/terms/description> """
                                Toetreding raamovereenkomst Creat voor tankkaarten
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<http://data.lblod.info/id/bestuursorganen/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517> <http://www.w3.org/ns/org#classification> <http://data.vlaanderen.be/id/concept/BestuursorgaanClassificatieCode/5ab0e9b8a3b2ca7c5e000006>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://purl.org/dc/terms/title> """
                        
                        COLLEGE VAN BURGEMEESTER EN SCHEPENEN
                        VAN 16 MEI 2024
                    """@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.europa.eu/eli/ontology#title_short> '''Proclim - kennisneming prijsherziening opdracht "Periodiek reinigen van gevel- en glaspartijen"'''.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024.html> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://data.vlaanderen.be/id/concept/BesluitDocumentType/3fa67785-ffdc-4b30-8880-2b99d97b4dee>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://purl.org/dc/terms/title> """25. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088> <http://purl.org/dc/terms/title> """47. Goedkeuring en  gunning - Raamovereenkomst Werkkledij technische dienst """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Evenement: Bronk 02/06/2024 's-Gravenvoeren"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/2c1cc73f2fcd45dd8e8c4632b4c72758-23132>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://purl.org/dc/terms/title> """27. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://purl.org/dc/terms/title> """32. Vacantverklaring jobstudent allround technische dienst - groendienst - milieupark""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/6065C147FC620200080005DF>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.europa.eu/eli/ontology#description> """
                            Proclim - kennisneming prijsherziening opdracht "Periodiek reinigen van gevel- en glaspartijen"
                        """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.europa.eu/eli/ontology#title> """13. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769M
""".
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Akteneming melding terrasoverkapping - GAENS P - Amphora 8"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/aaedeaaa517246c988979d6558ff2c75-23087>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://purl.org/dc/terms/title> """57. Vergunning: verbouwen horecapand - COLLINGS - Withuisstraat 2""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://purl.org/dc/terms/description> """
                                Vervanging van brandalarmcentrale van AC De Voor
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.europa.eu/eli/ontology#title> """15. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 1110M2""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.europa.eu/eli/ontology#title> """56. Akteneming melding terrasoverkapping - GAENS P - Amphora 8""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.europa.eu/eli/ontology#title_short> """Goedkeuring offerte ophalen landbouwfolie op betonplaat milieupark""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Vervanging van brandalarmcentrale van AC De Voor"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.europa.eu/eli/ontology#title_short> """Toetreding raamovereenkomst met ANB voor bestrijding van de Aziatische hoornaar""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<http://data.lblod.info/id/bestuurseenheden/f39eb137cb5c9195f92928522bbbf0d104fb54be6eb0c9c62a24d16b88b44272> <http://www.w3.org/2004/02/skos/core#prefLabel> """
                Gemeente Voeren
            """^^<http://www.w3.org/2000/01/rdf-schema#Literal>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://purl.org/dc/terms/title> """45. Toetreding raamovereenkomst Creat voor tankkaarten""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180> <http://purl.org/dc/terms/title> """26. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B, nr. 167G
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/94049dc6e5fe4d42902732bfd0d466d6-23141>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.europa.eu/eli/ontology#title_short> """Goedkeuring uitschrijven van twee percelen uit jachtplan""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fb72d2a988654b5d85c2246dbaffe6bd-23077>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://purl.org/dc/terms/title> """29. Kennisneming notulen Kerkbestuur 's Gravenvoeren -  vergadering 22 april 2024""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.europa.eu/eli/ontology#title> """57. Vergunning: verbouwen horecapand - COLLINGS - Withuisstraat 2""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/120927665dec493fbaf7a78b18b22bb7-23094>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/1925b94969d14c858b4dcaa850ebb34e-23088>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/f393169f455649599a8f56b9a026f36b-23090> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel MOEL, sectie B, nr. 593A"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.europa.eu/eli/ontology#title_short> """Goedkeuring en  gunning - Raamovereenkomst Werkkledij technische dienst """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/a28b599dda544a15a3e475a2c35d210c-23166> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024.html> <http://purl.org/dc/terms/type> <https://data.vlaanderen.be/id/concept/BesluitDocumentType/3fa67785-ffdc-4b30-8880-2b99d97b4dee>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173> <http://purl.org/dc/terms/title> """19. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1979T
""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c5370583d9544d668121cbdf731ad1bd-23168>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.europa.eu/eli/ontology#title> """50. Goedkeuring uitschrijven van twee percelen uit jachtplan""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/28e57f075e0344059cb4dd6b8fa6fcdf-23144>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Vacantverklaring jobstudent allround technische dienst - groendienst - milieupark"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/da00385306564d0e936319a66d6e2584-23180> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1981E
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/120927665dec493fbaf7a78b18b22bb7-23094> <http://purl.org/dc/terms/title> """58. Vergunning: uitbreiding woning - LINDELAUF K - Teuven-Dorp 68""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Melding evenement: verjaardag 31/08/2024"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.europa.eu/eli/ontology#title> """3. Belasting voor het inzamelen en verwerken van huishoudelijke afvalstoffen: aanslagjaar 2024, kohier 1""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr.1979T
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/88d9b8c3f91d409da129a6f4ab73ffec-23139> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.europa.eu/eli/ontology#title> """49. Goedkeuring offerte ophalen landbouwfolie op betonplaat milieupark""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fb72d2a988654b5d85c2246dbaffe6bd-23077> <http://data.europa.eu/eli/ontology#title_short> """Collector Teuvenbeek - vorderingsstaat 25""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.europa.eu/eli/ontology#title> """9. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 457G
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ec06a448f43e457898f2f29e97fdf1cc-23079>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 687M
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1b8c95cea7544b5fb38713a2ee164322-23182> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Evenement: processie 's-Gravenvoeren -  02/06/2024"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://purl.org/dc/terms/title> '''43. Proclim - kennisneming prijsherziening opdracht "Periodiek reinigen van gevel- en glaspartijen"'''.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/2ea9fa2cebdb47e591c2acbe09fc4724-23164>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.europa.eu/eli/ontology#title> """47. Goedkeuring en  gunning - Raamovereenkomst Werkkledij technische dienst """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e74b672770c2453698112da9456c0c26-23150> <http://data.europa.eu/eli/ontology#title> """44. Kennisgeving aankopen onder delegatie voor de maand: april 2024 - entiteit GEMEENTE""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Evenement: kermis + jogging 03/08/2024 Remersdaal"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Goedkeuring offerte ophalen landbouwfolie op betonplaat milieupark"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a28b599dda544a15a3e475a2c35d210c-23166>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/bdbb944499b547a2823e04a924a71c67-23167>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c79efa14e61a4817975649ad623b4c3f-23153> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/3b3d6f754d1c468fb1a3317b152e4fe4-23078>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7bc32579fe02492b96308e4a2f06f349-23165> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/bdbb944499b547a2823e04a924a71c67-23167> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Goedkeuring uitschrijven van twee percelen uit jachtplan"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Toetreding raamovereenkomst met ANB voor bestrijding van de Aziatische hoornaar"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://purl.org/dc/terms/description> """
                                Proclim - kennisneming prijsherziening opdracht "Periodiek reinigen van gevel- en glaspartijen"
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#gevolg> """Kennisneming"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9104148f1c19440aa9bce72f4c262392-23085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#onderwerp> '''Proclim - kennisneming prijsherziening opdracht "Periodiek reinigen van gevel- en glaspartijen"'''@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.europa.eu/eli/ontology#title> """58. Vergunning: uitbreiding woning - LINDELAUF K - Teuven-Dorp 68""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/a5bf9a80086e4108b6d237be4105cc85-23175>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/f393169f455649599a8f56b9a026f36b-23090> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2950e12d56ed477ba4af5e3814129db0-23147> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/bbf57864584549789d251bf94ab682cd-23152> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.europa.eu/eli/ontology#title> """11. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 687M
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/462aeabbe77e4a19a6b5e44c044dbbf2-23184>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/71a405814dda46f08e840b2a50eb71c5-23171>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/a5bf9a80086e4108b6d237be4105cc85-23175> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9477ba2f0b9a49ff9de62c9127659238-23173> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9477ba2f0b9a49ff9de62c9127659238-23173>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/71a405814dda46f08e840b2a50eb71c5-23171> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/71a405814dda46f08e840b2a50eb71c5-23171>.
<http://data.lblod.info/id/mandatarissen/6065C147FC620200080005DF> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/mandaat#Mandataris>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://purl.org/dc/terms/title> """46. Toetreding raamovereenkomst met ANB voor bestrijding van de Aziatische hoornaar""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2f68ed9f04d84bcc91f9710137f797df-23172> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Belasting voor het inzamelen en verwerken van huishoudelijke afvalstoffen: aanslagjaar 2024, kohier 1"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/88d9b8c3f91d409da129a6f4ab73ffec-23139>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/ecb814824e2a481480ad84d1f660bf9b-23163> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9104148f1c19440aa9bce72f4c262392-23085> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/46bb484e5dd549f58fc6d76c8e26b260-23157> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/46bb484e5dd549f58fc6d76c8e26b260-23157>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/0fabb7a9ef6d44bd9da04e5171c5e78a-23174> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/71a405814dda46f08e840b2a50eb71c5-23171> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/mandaat#Mandataris>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/fff37eedd56d4bec962a07545a51be9a-23146>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/91c71a87757b4e76acd9597197876b44-23155> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2964686e9081419c8158687d54ec2612-23005> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/9477ba2f0b9a49ff9de62c9127659238-23173> <http://data.vlaanderen.be/ns/besluit#gevolg> """Goedgekeurd"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Tijdelijke politieverordening op het Wegverkeer: Bronk 's-Gravenvoeren 02/06/2024"""@nl.
<http://data.lblod.info/id/bestuurseenheden/f39eb137cb5c9195f92928522bbbf0d104fb54be6eb0c9c62a24d16b88b44272> <http://data.vlaanderen.be/ns/besluit#werkingsgebied> <http://data.lblod.info/id/werkingsgebieden/22658498f757ed03025abf548124246f8a02276dec24911bea7fb90da0280b59>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7bc32579fe02492b96308e4a2f06f349-23165> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.europa.eu/eli/ontology#title> """14. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769M
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel REM, sectie B, nr. 167G
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2f68ed9f04d84bcc91f9710137f797df-23172>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e0a8d9f9cebf4a3bb1ea872722f96ade-23098> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/8781144066924d97a921eec76c765bc1-23162> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c5370583d9544d668121cbdf731ad1bd-23168> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/b80588abdbc0478a90086caebc3c0aea-23134> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Stemming>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/6937b035ee8e4e77ba870f77f769041d-23140> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/7253177f924d4a13ab15ea413f657e02-23186>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ec06a448f43e457898f2f29e97fdf1cc-23079> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/94049dc6e5fe4d42902732bfd0d466d6-23141> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/d6d1e02924724010bc0135e8e6cf4d29-23095>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/3b3d6f754d1c468fb1a3317b152e4fe4-23078> <http://data.europa.eu/eli/ontology#title> """35. Aanvraag inschrijving op kiezerslijst """.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/860fa4cc4d0e4f7e888c1857a2edb17d-23080>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Kennisneming notulen Kerkbestuur 's Gravenvoeren -  vergadering 22 april 2024"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e508fa7eb50a46d982a91f49b2e9f319-23145>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/28e57f075e0344059cb4dd6b8fa6fcdf-23144> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/a5bf9a80086e4108b6d237be4105cc85-23175> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/0fabb7a9ef6d44bd9da04e5171c5e78a-23174>.
<http://data.lblod.info/id/bestuursorganen/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517> <http://data.vlaanderen.be/ns/besluit#bestuurt> <http://data.lblod.info/id/bestuurseenheden/f39eb137cb5c9195f92928522bbbf0d104fb54be6eb0c9c62a24d16b88b44272>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/9f869404bc1a43feb93736b0d2b7bf26-23161> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/9f869404bc1a43feb93736b0d2b7bf26-23161>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/da00385306564d0e936319a66d6e2584-23180>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/b80588abdbc0478a90086caebc3c0aea-23134> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/dc9b70166e974a52838b02f23dbd01c3-23135>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/91c71a87757b4e76acd9597197876b44-23155> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/428e65d8fddb41658b22f208afbf714b-23176> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/860fa4cc4d0e4f7e888c1857a2edb17d-23080> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://data.europa.eu/eli/ontology#title_short> """""".
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/bdbb944499b547a2823e04a924a71c67-23167> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SGV, sectie A, nr. 769M
"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.vlaanderen.be/ns/besluit#openbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/9104148f1c19440aa9bce72f4c262392-23085> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://www.w3.org/ns/prov#generated> <https://lblod.voeren.be/LBLODWeb/id/besluiten/c4669bbfef6a49739e57094bc5d4fed3-23093>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c79efa14e61a4817975649ad623b4c3f-23153> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.europa.eu/eli/ontology#title> """27. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/aaedeaaa517246c988979d6558ff2c75-23087> <http://data.europa.eu/eli/ontology#language> <http://publications.europa.eu/resource/authority/language/NLD>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2ea9fa2cebdb47e591c2acbe09fc4724-23164> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/2964686e9081419c8158687d54ec2612-23005>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d8aa5fd2193543bdb77ce94373095957-23169> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/ecaabcf7a4d043848649c0cdc2e7608d-23181> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2950e12d56ed477ba4af5e3814129db0-23147> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e508fa7eb50a46d982a91f49b2e9f319-23145> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/3a6c471e744f41d7ae69f01afe35e0fe-23159> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/3a6c471e744f41d7ae69f01afe35e0fe-23159>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7e0ba4c998614b3d935728eaff0ed880-23178> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/4e9f1f0c476a4779bd09e46ba2d6aae5-23160> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/353bb8701fb34723891b2c9ec920cbcb-23084> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/03d669ad71e74b2b9eebe0348566f1ef-23138> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b80588abdbc0478a90086caebc3c0aea-23134>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/14bb098553e94e7d8ee9f8a511e83e20-23179> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#BehandelingVanAgendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e74b672770c2453698112da9456c0c26-23150> <http://data.vlaanderen.be/ns/besluit#heeftVoorzitter> <http://data.lblod.info/id/mandatarissen/5E970463A3ACB60008000558>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/c4669bbfef6a49739e57094bc5d4fed3-23093> <http://purl.org/dc/terms/description> """
                                
                            """.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel MOEL, sectie B , nr. 595H"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/c79efa14e61a4817975649ad623b4c3f-23153> <http://data.vlaanderen.be/ns/besluit#gebeurtNa> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/bbf57864584549789d251bf94ab682cd-23152>.
<https://lblod.voeren.be/LBLODWeb/id/zittingen/5a460a45dff84f59a44cafa600915cbc-1065> <http://data.vlaanderen.be/ns/besluit#behandelt> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/f393169f455649599a8f56b9a026f36b-23090>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/462aeabbe77e4a19a6b5e44c044dbbf2-23184> <http://data.europa.eu/eli/ontology#title> """34. Kampvervoer KLJ Teuven 2024""".
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7253177f924d4a13ab15ea413f657e02-23186> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/5d38af14c34844bd92bea18cd6f7e3f8-23158> <http://data.vlaanderen.be/ns/besluit#heeftStemming> <https://lblod.voeren.be/LBLODWeb/id/stemmingen/5d38af14c34844bd92bea18cd6f7e3f8-23158>.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/7e0ba4c998614b3d935728eaff0ed880-23178> <http://data.europa.eu/eli/ontology#title> """24. Aanvraag vrijstelling: belasting onbebouwde bouwgronden en onbebouwde kavels 2023
Perceel SMV, sectie C, nr.277C
""".
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/7253177f924d4a13ab15ea413f657e02-23186> <http://data.vlaanderen.be/ns/besluit#geplandOpenbaar> """true"""^^<http://www.w3.org/2001/XMLSchema#boolean>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/8781144066924d97a921eec76c765bc1-23162> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/stemmingen/2964686e9081419c8158687d54ec2612-23005> <http://data.vlaanderen.be/ns/besluit#onderwerp> """Goedkeuring factuur : herstelling 2BWK041 - vrachtwagen Man"""@nl.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/b5ca57958fd147a093e58a0d7de8c11b-23136> <http://data.vlaanderen.be/ns/besluit#heeftSecretaris> <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/#35_Erika%20Brouwers>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.europa.eu/eli/ontology#passed_by> <http://data.lblod.info/id/bestuursorganen/b75c5c18091ebffc741222c69f44306248a55a3fb45461e631b11aacc0010bc4>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://data.europa.eu/eli/ontology#date_publication> """2024-05-22"""^^<http://www.w3.org/2001/XMLSchema#date>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/ns/prov#value> <https://lblod.voeren.be/LBLODWeb/Home/Overzicht/884dbbe51608fb34d615349fd3b4813b2fdb6b0dbda77d03818bdb0f30660517/GetPublication/?filename=BesluitenLijstUitspraak_College%20van%20burgemeester%20en%20schepenen_16-05-2024_Besluitenlijst.pdf>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Besluit>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/6937b035ee8e4e77ba870f77f769041d-23140> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/d7576e6f6fb04eb5a01fcfdcae67084d-23177> <http://data.vlaanderen.be/ns/besluit#aangebrachtNa> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/428e65d8fddb41658b22f208afbf714b-23176>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/1925b94969d14c858b4dcaa850ebb34e-23088> <http://data.europa.eu/eli/ontology#description> """
                            Goedkeuring en  gunning - Raamovereenkomst Werkkledij technische dienst 
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/e8d08f93195e41e7a642c0157aa1f590-23170> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/120927665dec493fbaf7a78b18b22bb7-23094> <http://www.w3.org/ns/prov#wasGeneratedBy> <https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/120927665dec493fbaf7a78b18b22bb7-23094>.
<https://lblod.voeren.be/LBLODWeb/id/besluiten/dc9b70166e974a52838b02f23dbd01c3-23135> <http://data.europa.eu/eli/ontology#description> """
                            
                        """.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/fff37eedd56d4bec962a07545a51be9a-23146> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://data.vlaanderen.be/ns/besluit#Agendapunt>.
<https://lblod.voeren.be/LBLODWeb/id/agendapunt/2c1cc73f2fcd45dd8e8c4632b4c72758-23132> <http://purl.org/dc/terms/description> """
                                Toetreding raamovereenkomst met ANB voor bestrijding van de Aziatische hoornaar
                            """.
<https://lblod.voeren.be/LBLODWeb/id/behandelingen-van-agendapunten/ecb814824e2a481480ad84d1f660bf9b-23163> <http://purl.org/dc/terms/subject> <https://lblod.voeren.be/LBLODWeb/id/agendapunt/ecb814824e2a481480ad84d1f660bf9b-23163>.