header.xml
45.3 KB
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
<?xml version='1.0' encoding='UTF-8'?>
<teiHeader xmlns:xi="http://www.w3.org/2001/XInclude" xmlns="http://www.tei-c.org/ns/1.0" xml:id="PPC-201519-sjm-ppxxx-00036-03">
<fileDesc>
<titleStmt>
<title>Sprawozdanie stenograficzne z obrad Sejmu RP z 24 lutego 2017 r. (kadencja VIII, Posiedzenie Plenarne 36, dzień 3).</title>
</titleStmt>
<publicationStmt>
<p>Prosimy o zapoznanie się z nagłówkiem korpusu (PPC_header.xml).</p>
</publicationStmt>
<sourceDesc>
<bibl>
<title>Sprawozdanie stenograficzne z obrad Sejmu RP z 24 lutego 2017 r. (kadencja VIII, Posiedzenie Plenarne 36, dzień 3).</title>
<publisher>Kancelaria Sejmu Rzeczypospolitej Polskiej</publisher>
<note type="system">III RP</note>
<note type="house">Sejm</note>
<note type="termNo">8</note>
<note type="type">Posiedzenie Plenarne</note>
<note type="sessionNo">36</note>
<note type="dayNo">3</note>
<date>2017-02-24</date>
</bibl>
</sourceDesc>
</fileDesc>
<profileDesc>
<particDesc>
<person xml:id="GlosZSali" role="speaker">
<persName>Głos z sali</persName>
</person>
<person xml:id="GlosyZSali" role="speaker">
<persName>Głosy z sali</persName>
</person>
<person xml:id="GlownyInspektorPracyRomanGiedrojc" role="speaker">
<persName>Główny Inspektor Pracy Roman Giedrojć</persName>
</person>
<person xml:id="Marszalek" role="speaker">
<persName>Marszałek</persName>
</person>
<person xml:id="PodsekretarzStanuWMinisterstwieFinansowPiotrNowak" role="speaker">
<persName>Podsekretarz Stanu w Ministerstwie Finansów Piotr Nowak</persName>
</person>
<person xml:id="PodsekretarzStanuWMinisterstwieSprawiedliwosciMarcinWarchol" role="speaker">
<persName>Podsekretarz Stanu w Ministerstwie Sprawiedliwości Marcin Warchoł</persName>
</person>
<person xml:id="PoselAleksanderMrowczynski" role="speaker">
<persName>Poseł Aleksander Mrówczyński</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Aleksander_Mrówczyński__Sejm8"/>
</linkGrp>
<firstName>Aleksander</firstName>
<lastName>Mrówczyński</lastName>
<birthdate>1953-12-09</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselAnnaKwiecien" role="speaker">
<persName>Poseł Anna Kwiecień</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Anna_Kwiecień__Sejm8"/>
</linkGrp>
<firstName>Anna</firstName>
<lastName>Kwiecień</lastName>
<birthdate>1964-09-30</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselArkadiuszCzartoryski" role="speaker">
<persName>Poseł Arkadiusz Czartoryski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Arkadiusz_Czartoryski__Sejm8"/>
</linkGrp>
<firstName>Arkadiusz</firstName>
<lastName>Czartoryski</lastName>
<birthdate>1966-04-14</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselArkadiuszMyrcha" role="speaker">
<persName>Poseł Arkadiusz Myrcha</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Arkadiusz_Myrcha__Sejm8"/>
</linkGrp>
<firstName>Arkadiusz</firstName>
<lastName>Myrcha</lastName>
<birthdate>1984-02-01</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselArturGierada" role="speaker">
<persName>Poseł Artur Gierada</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Artur_Daniel_Gierada__Sejm8"/>
</linkGrp>
<firstName>Artur</firstName>
<lastName>Gierada</lastName>
<birthdate>1979-04-21</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselBarbaraDolniak" role="speaker">
<persName>Poseł Barbara Dolniak</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Barbara_Dolniak__Sejm8"/>
</linkGrp>
<firstName>Barbara</firstName>
<lastName>Dolniak</lastName>
<birthdate>1960-09-12</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselBlazejParda" role="speaker">
<persName>Poseł Błażej Parda</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Błażej_Parda__Sejm8"/>
</linkGrp>
<firstName>Błażej</firstName>
<lastName>Parda</lastName>
<birthdate>1986-12-26</birthdate>
<club>Klub Poselski Kukiz'15</club>
<sex>M</sex>
</person>
<person xml:id="PoselBogdanRzonca" role="speaker">
<persName>Poseł Bogdan Rzońca</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Bogdan_Józef_Rzońca__Sejm8"/>
</linkGrp>
<firstName>Bogdan</firstName>
<lastName>Rzońca</lastName>
<birthdate>1961-02-01</birthdate>
<sex>M</sex>
</person>
<person xml:id="PoselBorysBudka" role="speaker">
<persName>Poseł Borys Budka</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Borys_Piotr_Budka__Sejm8"/>
</linkGrp>
<firstName>Borys</firstName>
<lastName>Budka</lastName>
<birthdate>1978-03-11</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselBozenaSzydlowska" role="speaker">
<persName>Poseł Bożena Szydłowska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Bożena_Stanisława_Szydłowska__Sejm8"/>
</linkGrp>
<firstName>Bożena</firstName>
<lastName>Szydłowska</lastName>
<birthdate>1951-04-11</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselCezaryGrabarczyk" role="speaker">
<persName>Poseł Cezary Grabarczyk</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Cezary_Stanisław_Grabarczyk__Sejm8"/>
</linkGrp>
<firstName>Cezary</firstName>
<lastName>Grabarczyk</lastName>
<birthdate>1960-04-26</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselCezaryTomczyk" role="speaker">
<persName>Poseł Cezary Tomczyk</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Cezary_Józef_Tomczyk__Sejm8"/>
</linkGrp>
<firstName>Cezary</firstName>
<lastName>Tomczyk</lastName>
<birthdate>1984-08-25</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselDominikTarczynski" role="speaker">
<persName>Poseł Dominik Tarczyński</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Dominik_Tarczyński__Sejm8"/>
</linkGrp>
<firstName>Dominik</firstName>
<lastName>Tarczyński</lastName>
<birthdate>1979-03-27</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselDorotaArciszewskaMielewczyk" role="speaker">
<persName>Poseł Dorota Arciszewska-Mielewczyk</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Dorota_Irvina_Arciszewska_Mielewczyk__Sejm8"/>
</linkGrp>
<firstName>Dorota</firstName>
<lastName>Arciszewska-Mielewczyk</lastName>
<birthdate>1968-02-16</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselDorotaNiedziela" role="speaker">
<persName>Poseł Dorota Niedziela</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Dorota_Niedziela__Sejm8"/>
</linkGrp>
<firstName>Dorota</firstName>
<lastName>Niedziela</lastName>
<birthdate>1964-08-20</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselEwaKopacz" role="speaker">
<persName>Poseł Ewa Kopacz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Ewa_Bożena_Kopacz__Sejm8"/>
</linkGrp>
<firstName>Ewa</firstName>
<lastName>Kopacz</lastName>
<birthdate>1956-12-03</birthdate>
<sex>K</sex>
</person>
<person xml:id="PoselEwaKozanecka" role="speaker">
<persName>Poseł Ewa Kozanecka</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Ewa_Kozanecka__Sejm8"/>
</linkGrp>
<firstName>Ewa</firstName>
<lastName>Kozanecka</lastName>
<birthdate>1974-05-29</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselEwaTomaszewska" role="speaker">
<persName>Poseł Ewa Tomaszewska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Ewa_Tomaszewska__Sejm8"/>
</linkGrp>
<firstName>Ewa</firstName>
<lastName>Tomaszewska</lastName>
<birthdate>1947-04-14</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselGenowefaTokarska" role="speaker">
<persName>Poseł Genowefa Tokarska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Genowefa_Tokarska__Sejm8"/>
</linkGrp>
<firstName>Genowefa</firstName>
<lastName>Tokarska</lastName>
<birthdate>1949-08-05</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>K</sex>
</person>
<person xml:id="PoselIwonaArent" role="speaker">
<persName>Poseł Iwona Arent</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Iwona_Ewa_Arent__Sejm8"/>
</linkGrp>
<firstName>Iwona</firstName>
<middleName>Ewa</middleName>
<lastName>Arent</lastName>
<birthdate>1968-06-04</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselIwonaMichalek" role="speaker">
<persName>Poseł Iwona Michałek</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Iwona_Michałek__Sejm8"/>
</linkGrp>
<firstName>Iwona</firstName>
<lastName>Michałek</lastName>
<birthdate>1956-03-13</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselIzabelaKatarzynaMrzyglocka" role="speaker">
<persName>Poseł Izabela Katarzyna Mrzygłocka</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Izabela_Katarzyna_Mrzygłocka__Sejm8"/>
</linkGrp>
<firstName>Izabela</firstName>
<middleName>Katarzyna</middleName>
<lastName>Mrzygłocka</lastName>
<birthdate>1959-05-20</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselIzabelaLeszczyna" role="speaker">
<persName>Poseł Izabela Leszczyna</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Izabela_Dorota_Leszczyna__Sejm8"/>
</linkGrp>
<firstName>Izabela</firstName>
<lastName>Leszczyna</lastName>
<birthdate>1962-09-03</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselJacekProtasiewicz" role="speaker">
<persName>Poseł Jacek Protasiewicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Jacek_Protasiewicz__Sejm8"/>
</linkGrp>
<firstName>Jacek</firstName>
<lastName>Protasiewicz</lastName>
<birthdate>1967-06-05</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselJanLopata" role="speaker">
<persName>Poseł Jan Łopata</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Jan_Zbigniew_Łopata__Sejm8"/>
</linkGrp>
<firstName>Jan</firstName>
<lastName>Łopata</lastName>
<birthdate>1954-08-16</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselJanuszCichon" role="speaker">
<persName>Poseł Janusz Cichoń</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Janusz_Władysław_Cichoń__Sejm8"/>
</linkGrp>
<firstName>Janusz</firstName>
<lastName>Cichoń</lastName>
<birthdate>1957-01-07</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselJanuszSniadek" role="speaker">
<persName>Poseł Janusz Śniadek</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Janusz_Józef_Śniadek__Sejm8"/>
</linkGrp>
<firstName>Janusz</firstName>
<lastName>Śniadek</lastName>
<birthdate>1955-05-26</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselJerzyGosiewski" role="speaker">
<persName>Poseł Jerzy Gosiewski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Jerzy_Antoni_Gosiewski__Sejm8"/>
</linkGrp>
<firstName>Jerzy</firstName>
<lastName>Gosiewski</lastName>
<birthdate>1952-11-20</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselJerzyJachnik" role="speaker">
<persName>Poseł Jerzy Jachnik</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Jerzy_Jachnik__Sejm8"/>
</linkGrp>
<firstName>Jerzy</firstName>
<lastName>Jachnik</lastName>
<birthdate>1949-11-17</birthdate>
<club>Koło Poselskie Przywrócić Prawo</club>
<sex>M</sex>
</person>
<person xml:id="PoselJerzyMeysztowicz" role="speaker">
<persName>Poseł Jerzy Meysztowicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Jerzy_Meysztowicz__Sejm8"/>
</linkGrp>
<firstName>Jerzy</firstName>
<lastName>Meysztowicz</lastName>
<birthdate>1958-10-01</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselJoannaAugustynowska" role="speaker">
<persName>Poseł Joanna Augustynowska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Joanna_Augustynowska__Sejm8"/>
</linkGrp>
<firstName>Joanna</firstName>
<lastName>Augustynowska</lastName>
<birthdate>1979-06-14</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselJozefaHrynkiewicz" role="speaker">
<persName>Poseł Józefa Hrynkiewicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Józefa_Hrynkiewicz__Sejm8"/>
</linkGrp>
<firstName>Józefa</firstName>
<lastName>Hrynkiewicz</lastName>
<birthdate>1945-10-07</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselKamilaGasiukPihowicz" role="speaker">
<persName>Poseł Kamila Gasiuk-Pihowicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Kamila_Gasiuk_Pihowicz__Sejm8"/>
</linkGrp>
<firstName>Kamila</firstName>
<lastName>Gasiuk-Pihowicz</lastName>
<birthdate>1983-05-08</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselKatarzynaLubnauer" role="speaker">
<persName>Poseł Katarzyna Lubnauer</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Katarzyna_Lubnauer__Sejm8"/>
</linkGrp>
<firstName>Katarzyna</firstName>
<lastName>Lubnauer</lastName>
<birthdate>1969-07-24</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselKonradGlebocki" role="speaker">
<persName>Poseł Konrad Głębocki</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Konrad_Głębocki__Sejm8"/>
</linkGrp>
<firstName>Konrad</firstName>
<lastName>Głębocki</lastName>
<birthdate>1972-05-13</birthdate>
<sex>M</sex>
</person>
<person xml:id="PoselKrystynaPawlowicz" role="speaker">
<persName>Poseł Krystyna Pawłowicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Krystyna_Pawłowicz__Sejm8"/>
</linkGrp>
<firstName>Krystyna</firstName>
<lastName>Pawłowicz</lastName>
<birthdate>1952-04-14</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselKrystynaSkowronska" role="speaker">
<persName>Poseł Krystyna Skowrońska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Krystyna_Skowrońska__Sejm8"/>
</linkGrp>
<firstName>Krystyna</firstName>
<lastName>Skowrońska</lastName>
<birthdate>1954-07-22</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselKrzysztofPaszyk" role="speaker">
<persName>Poseł Krzysztof Paszyk</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Krzysztof_Paszyk__Sejm8"/>
</linkGrp>
<firstName>Krzysztof</firstName>
<lastName>Paszyk</lastName>
<birthdate>1979-04-10</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselKrzysztofSzulowski" role="speaker">
<persName>Poseł Krzysztof Szulowski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Krzysztof_Szulowski__Sejm8"/>
</linkGrp>
<firstName>Krzysztof</firstName>
<lastName>Szulowski</lastName>
<birthdate>1963-05-25</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselLukaszSchreiber" role="speaker">
<persName>Poseł Łukasz Schreiber</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Łukasz_Schreiber__Sejm8"/>
</linkGrp>
<firstName>Łukasz</firstName>
<lastName>Schreiber</lastName>
<birthdate>1987-05-26</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselMagdalenaKochan" role="speaker">
<persName>Poseł Magdalena Kochan</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Magdalena_Maria_Kochan__Sejm8"/>
</linkGrp>
<firstName>Magdalena</firstName>
<lastName>Kochan</lastName>
<birthdate>1950-01-28</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselMalgorzataKidawaBlonska" role="speaker">
<persName>Poseł Małgorzata Kidawa-Błońska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Małgorzata_Maria_Kidawa_Błońska__Sejm8"/>
</linkGrp>
<firstName>Małgorzata</firstName>
<lastName>Kidawa-Błońska</lastName>
<birthdate>1957-05-05</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselMarcinSwiecicki" role="speaker">
<persName>Poseł Marcin Święcicki</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Marcin_Święcicki__Sejm8"/>
</linkGrp>
<firstName>Marcin</firstName>
<lastName>Święcicki</lastName>
<birthdate>1947-04-17</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselMarekRucinski" role="speaker">
<persName>Poseł Marek Ruciński</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Marek_Ruciński__Sejm8"/>
</linkGrp>
<firstName>Marek</firstName>
<lastName>Ruciński</lastName>
<birthdate>1953-01-24</birthdate>
<club>Posłowie niezrzeszeni</club>
<sex>M</sex>
</person>
<person xml:id="PoselMarekSowa" role="speaker">
<persName>Poseł Marek Sowa</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Marek_Sowa__Sejm8"/>
</linkGrp>
<firstName>Marek</firstName>
<lastName>Sowa</lastName>
<birthdate>1967-02-04</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselMariaZuba" role="speaker">
<persName>Poseł Maria Zuba</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Maria_Zuba__Sejm8"/>
</linkGrp>
<firstName>Maria</firstName>
<lastName>Zuba</lastName>
<birthdate>1951-04-06</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselMartaGolbik" role="speaker">
<persName>Poseł Marta Golbik</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Marta_Golbik__Sejm8"/>
</linkGrp>
<firstName>Marta</firstName>
<lastName>Golbik</lastName>
<birthdate>1985-04-14</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselMichalKaminski" role="speaker">
<persName>Poseł Michał Kamiński</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Michał_Tomasz_Kamiński__Sejm8"/>
</linkGrp>
<firstName>Michał</firstName>
<middleName>Tomasz</middleName>
<lastName>Kamiński</lastName>
<birthdate>1972-03-28</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselMieczyslawMiazga" role="speaker">
<persName>Poseł Mieczysław Miazga</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Mieczysław_Miazga__Sejm8"/>
</linkGrp>
<firstName>Mieczysław</firstName>
<lastName>Miazga</lastName>
<birthdate>1956-12-22</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselMiroslawMaliszewski" role="speaker">
<persName>Poseł Mirosław Maliszewski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Mirosław_Wojciech_Maliszewski__Sejm8"/>
</linkGrp>
<firstName>Mirosław</firstName>
<lastName>Maliszewski</lastName>
<birthdate>1968-02-28</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselMiroslawPampuch" role="speaker">
<persName>Poseł Mirosław Pampuch</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Mirosław_Pampuch__Sejm8"/>
</linkGrp>
<firstName>Mirosław</firstName>
<lastName>Pampuch</lastName>
<birthdate>1967-03-19</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselMiroslawSuchon" role="speaker">
<persName>Poseł Mirosław Suchoń</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Mirosław_Suchoń__Sejm8"/>
</linkGrp>
<firstName>Mirosław</firstName>
<lastName>Suchoń</lastName>
<birthdate>1976-01-10</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselNorbertKaczmarczyk" role="speaker">
<persName>Poseł Norbert Kaczmarczyk</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Norbert_Kaczmarczyk__Sejm8"/>
</linkGrp>
<firstName>Norbert</firstName>
<lastName>Kaczmarczyk</lastName>
<birthdate>1989-11-16</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselPaulinaHennigKloska" role="speaker">
<persName>Poseł Paulina Hennig-Kloska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Paulina_Hennig_Kloska__Sejm8"/>
</linkGrp>
<firstName>Paulina</firstName>
<lastName>Hennig-Kloska</lastName>
<birthdate>1977-10-05</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselPawelKobylinski" role="speaker">
<persName>Poseł Paweł Kobyliński</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Paweł_Kobyliński__Sejm8"/>
</linkGrp>
<firstName>Paweł</firstName>
<lastName>Kobyliński</lastName>
<birthdate>1982-06-03</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselPawelSzramka" role="speaker">
<persName>Poseł Paweł Szramka</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Paweł_Szramka__Sejm8"/>
</linkGrp>
<firstName>Paweł</firstName>
<lastName>Szramka</lastName>
<birthdate>1989-06-18</birthdate>
<club>Klub Poselski Kukiz'15</club>
<sex>M</sex>
</person>
<person xml:id="PoselPiotrKaleta" role="speaker">
<persName>Poseł Piotr Kaleta</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Piotr_Marek_Kaleta__Sejm8"/>
</linkGrp>
<firstName>Piotr</firstName>
<lastName>Kaleta</lastName>
<birthdate>1968-06-25</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselPiotrPolak" role="speaker">
<persName>Poseł Piotr Polak</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Piotr_Stanisław_Polak__Sejm8"/>
</linkGrp>
<firstName>Piotr</firstName>
<lastName>Polak</lastName>
<birthdate>1961-01-20</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselPiotrPyzik" role="speaker">
<persName>Poseł Piotr Pyzik</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Piotr_Mieczysław_Pyzik__Sejm8"/>
</linkGrp>
<firstName>Piotr</firstName>
<lastName>Pyzik</lastName>
<birthdate>1959-01-01</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselRafalWeber" role="speaker">
<persName>Poseł Rafał Weber</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Rafał_Weber__Sejm8"/>
</linkGrp>
<firstName>Rafał</firstName>
<lastName>Weber</lastName>
<birthdate>1981-09-01</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselRobertKropiwnicki" role="speaker">
<persName>Poseł Robert Kropiwnicki</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Robert_Kropiwnicki__Sejm8"/>
</linkGrp>
<firstName>Robert</firstName>
<lastName>Kropiwnicki</lastName>
<birthdate>1974-07-23</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselRobertTelus" role="speaker">
<persName>Poseł Robert Telus</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Robert_Telus__Sejm8"/>
</linkGrp>
<firstName>Robert</firstName>
<lastName>Telus</lastName>
<birthdate>1969-04-18</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselRobertWinnicki" role="speaker">
<persName>Poseł Robert Winnicki</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Robert_Winnicki__Sejm8"/>
</linkGrp>
<firstName>Robert</firstName>
<lastName>Winnicki</lastName>
<birthdate>1985-07-18</birthdate>
<club>Koło Poselskie Konfederacja</club>
<sex>M</sex>
</person>
<person xml:id="PoselRyszardWilczynski" role="speaker">
<persName>Poseł Ryszard Wilczyński</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Ryszard_Wilczyński__Sejm8"/>
</linkGrp>
<firstName>Ryszard</firstName>
<lastName>Wilczyński</lastName>
<birthdate>1960-10-23</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselSlawomirNitras" role="speaker">
<persName>Poseł Sławomir Nitras</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Sławomir_Witold_Nitras__Sejm8"/>
</linkGrp>
<firstName>Sławomir</firstName>
<lastName>Nitras</lastName>
<birthdate>1973-04-26</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>M</sex>
</person>
<person xml:id="PoselSprawozdawcaAndrzejMatusiewicz" role="speaker">
<persName>Poseł Sprawozdawca Andrzej Matusiewicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Andrzej_Antoni_Matusiewicz__Sejm8"/>
</linkGrp>
<firstName>Andrzej</firstName>
<lastName>Matusiewicz</lastName>
<birthdate>1952-06-22</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselSprawozdawcaBartlomiejWroblewski" role="speaker">
<persName>Poseł Sprawozdawca Bartłomiej Wróblewski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Bartłomiej_Wróblewski__Sejm8"/>
</linkGrp>
<firstName>Bartłomiej</firstName>
<lastName>Wróblewski</lastName>
<birthdate>1975-03-13</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselSprawozdawcaJerzyMalecki" role="speaker">
<persName>Poseł Sprawozdawca Jerzy Małecki</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Jerzy_Małecki__Sejm8"/>
</linkGrp>
<firstName>Jerzy</firstName>
<lastName>Małecki</lastName>
<birthdate>1972-04-23</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselSprawozdawcaMarcinPorzucek" role="speaker">
<persName>Poseł Sprawozdawca Marcin Porzucek</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Marcin_Porzucek__Sejm8"/>
</linkGrp>
<firstName>Marcin</firstName>
<lastName>Porzucek</lastName>
<birthdate>1984-07-20</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselSprawozdawcaWojciechMurdzek" role="speaker">
<persName>Poseł Sprawozdawca Wojciech Murdzek</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Wojciech_Murdzek__Sejm8"/>
</linkGrp>
<firstName>Wojciech</firstName>
<lastName>Murdzek</lastName>
<birthdate>1957-12-13</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselStanislawPiotrowicz" role="speaker">
<persName>Poseł Stanisław Piotrowicz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Stanisław_Piotrowicz__Sejm8"/>
</linkGrp>
<firstName>Stanisław</firstName>
<lastName>Piotrowicz</lastName>
<birthdate>1952-07-19</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselStefanNiesiolowski" role="speaker">
<persName>Poseł Stefan Niesiołowski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Stefan_Konstanty_Niesiołowski__Sejm8"/>
</linkGrp>
<firstName>Stefan</firstName>
<middleName>Konstanty</middleName>
<lastName>Niesiołowski</lastName>
<lastName>Myszkiewicz-Niesiołowski</lastName>
<birthdate>1944-02-04</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselTeresaGlenc" role="speaker">
<persName>Poseł Teresa Glenc</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Teresa_Glenc__Sejm8"/>
</linkGrp>
<firstName>Teresa</firstName>
<lastName>Glenc</lastName>
<birthdate>1958-05-27</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>K</sex>
</person>
<person xml:id="PoselTeresaPiotrowska" role="speaker">
<persName>Poseł Teresa Piotrowska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Teresa_Piotrowska__Sejm8"/>
</linkGrp>
<firstName>Teresa</firstName>
<lastName>Piotrowska</lastName>
<birthdate>1955-02-05</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="PoselTomaszJaskola" role="speaker">
<persName>Poseł Tomasz Jaskóła</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Tomasz_Jaskóła__Sejm8"/>
</linkGrp>
<firstName>Tomasz</firstName>
<lastName>Jaskóła</lastName>
<birthdate>1974-07-31</birthdate>
<club>Koło Poselskie Unia Polityki Realnej</club>
<sex>M</sex>
</person>
<person xml:id="PoselTomaszRzymkowski" role="speaker">
<persName>Poseł Tomasz Rzymkowski</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Tomasz_Rzymkowski__Sejm8"/>
</linkGrp>
<firstName>Tomasz</firstName>
<lastName>Rzymkowski</lastName>
<birthdate>1986-07-31</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselWaldemarAndzel" role="speaker">
<persName>Poseł Waldemar Andzel</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Waldemar_Franciszek_Andzel__Sejm8"/>
</linkGrp>
<firstName>Waldemar</firstName>
<lastName>Andzel</lastName>
<birthdate>1971-09-17</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselWaldemarBuda" role="speaker">
<persName>Poseł Waldemar Buda</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Waldemar_Buda__Sejm8"/>
</linkGrp>
<firstName>Waldemar</firstName>
<lastName>Buda</lastName>
<birthdate>1982-09-21</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselWladyslawKosiniakKamysz" role="speaker">
<persName>Poseł Władysław Kosiniak-Kamysz</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Władysław_Kosiniak_Kamysz__Sejm8"/>
</linkGrp>
<firstName>Władysław</firstName>
<lastName>Kosiniak-Kamysz</lastName>
<birthdate>1981-08-10</birthdate>
<club>Klub Parlamentarny Polskie Stronnictwo Ludowe - Koalicja Polska</club>
<sex>M</sex>
</person>
<person xml:id="PoselWojciechBuczak" role="speaker">
<persName>Poseł Wojciech Buczak</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Wojciech_Buczak__Sejm8"/>
</linkGrp>
<firstName>Wojciech</firstName>
<lastName>Buczak</lastName>
<birthdate>1955-02-06</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselWojciechSzarama" role="speaker">
<persName>Poseł Wojciech Szarama</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Wojciech_Piotr_Szarama__Sejm8"/>
</linkGrp>
<firstName>Wojciech</firstName>
<middleName>Piotr</middleName>
<lastName>Szarama</lastName>
<birthdate>1955-12-16</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="PoselZbigniewBiernat" role="speaker">
<persName>Poseł Zbigniew Biernat</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Zbigniew_Biernat__Sejm8"/>
</linkGrp>
<firstName>Zbigniew</firstName>
<lastName>Biernat</lastName>
<birthdate>1963-11-13</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="Poslowie" role="speaker">
<persName>Posłowie</persName>
</person>
<person xml:id="PrzewodniczacyRadyOchronyPracyJanuszSniadek" role="speaker">
<persName>Przewodniczący Rady Ochrony Pracy Janusz Śniadek</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Janusz_Józef_Śniadek__Sejm8"/>
</linkGrp>
<firstName>Janusz</firstName>
<lastName>Śniadek</lastName>
<birthdate>1955-05-26</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="komentarz" role="commentator">
<persName>Przypis stenotypisty</persName>
</person>
<person xml:id="SekretarzPoselPiotrOlszowka" role="speaker">
<persName>Sekretarz Poseł Piotr Olszówka</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Piotr_Olszówka__Sejm8"/>
</linkGrp>
<firstName>Piotr</firstName>
<lastName>Olszówka</lastName>
<birthdate>1981-06-16</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="SekretarzStanuWMinisterstwieFinansowMarianBanas" role="speaker">
<persName>Sekretarz Stanu w Ministerstwie Finansów Marian Banaś</persName>
</person>
<person xml:id="SekretarzStanuWMinisterstwieFinansowWieslawJanczyk" role="speaker">
<persName>Sekretarz Stanu w Ministerstwie Finansów Wiesław Janczyk</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Wiesław_Stanisław_Janczyk__Sejm8"/>
</linkGrp>
<firstName>Wiesław</firstName>
<lastName>Janczyk</lastName>
<birthdate>1964-04-07</birthdate>
<club>Klub Parlamentarny Prawo i Sprawiedliwość</club>
<sex>M</sex>
</person>
<person xml:id="SekretarzStanuWMinisterstwieSprawZagranicznychKonradSzymanski" role="speaker">
<persName>Sekretarz Stanu w Ministerstwie Spraw Zagranicznych Konrad Szymański</persName>
</person>
<person xml:id="SekretarzStanuWMinisterstwieSprawiedliwosciPatrykJaki" role="speaker">
<persName>Sekretarz Stanu w Ministerstwie Sprawiedliwości Patryk Jaki</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Patryk_Tomasz_Jaki__Sejm8"/>
</linkGrp>
<firstName>Patryk</firstName>
<lastName>Jaki</lastName>
<birthdate>1985-05-11</birthdate>
<sex>M</sex>
</person>
<person xml:id="WicemarszalekBarbaraDolniak" role="speaker">
<persName>Wicemarszałek Barbara Dolniak</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Barbara_Dolniak__Sejm8"/>
</linkGrp>
<firstName>Barbara</firstName>
<lastName>Dolniak</lastName>
<birthdate>1960-09-12</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
<person xml:id="WicemarszalekMalgorzataKidawaBlonska" role="speaker">
<persName>Wicemarszałek Małgorzata Kidawa-Błońska</persName>
<linkGrp type="function">
<ptr target="http://legis.nlp.ipipan.waw.pl/onto/ppo.owl#Małgorzata_Maria_Kidawa_Błońska__Sejm8"/>
</linkGrp>
<firstName>Małgorzata</firstName>
<lastName>Kidawa-Błońska</lastName>
<birthdate>1957-05-05</birthdate>
<club>Klub Parlamentarny Platforma Obywatelska - Koalicja Obywatelska</club>
<sex>K</sex>
</person>
</particDesc>
</profileDesc>
</teiHeader>