-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworker2-xlsx_FkiSbRi.rdf
14393 lines (13493 loc) · 882 KB
/
worker2-xlsx_FkiSbRi.rdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<rdf:Description rdf:about="http://127.0.0.1:3333/19-0127020">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">19-0127020</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Cornell</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Witz</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">cwitz0@wp.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">DeVry Institute of Technology, Irving</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">A-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">381-33-1210</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Stamm, Weber and Padberg</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.34</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/21-5648886">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">21-5648886</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Nathanial</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Hawley</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">nhawley1@wikispaces.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">International Theravada Buddhist Missionary University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">585-01-3811</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Jones-Koch</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$9.17</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/63-9378617">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">63-9378617</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Batholomew</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Bartlomiejczyk</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">bbartlomiejczyk2@360.cn</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidade Camilo Castelo Branco</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">733-47-3811</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Barrows-Parisian</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">3.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.70</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/88-0438068">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">88-0438068</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Emlen</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Kellart</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">ekellart3@tuttocitta.it</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universitas Kristen Krida Wacana</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">556-68-1988</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Predovic LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">4.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.01</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/93-2861346">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">93-2861346</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Pieter</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Fridlington</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">pfridlington4@github.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Vitebsk State Academy of Veterinary Medicine</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">886-69-2179</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">West, Johnston and Beer</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">5.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.84</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/99-8931963">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">99-8931963</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Sayers</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Chatres</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">schatres5@instagram.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Hacettepe University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">230-00-1706</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Mraz and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">6.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.76</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/49-4469673">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">49-4469673</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Dana</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Tarbet</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">dtarbet6@themeforest.net</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">AISECT University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">967-90-0013</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Goyette-Pouros</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">7.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.89</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/79-1090294">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">79-1090294</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Curtis</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Weatherhogg</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">cweatherhogg7@cdbaby.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">University of Winnipeg</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">962-49-2145</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Home office Apliances</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Kunde and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">8.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.76</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/13-5433325">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">13-5433325</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Anton</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Basini-Gazzi</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">abasinigazzi8@java.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Kabardino-Balkarian State University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">240-52-9280</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Sports</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Ankunding Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">9.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$4.18</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/00-5030727">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">00-5030727</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Shanan</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Losebie</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">slosebie9@mapy.cz</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Tokyo Denki University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">A-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">613-73-9438</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Sports</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Wuckert, Will and Runte</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">10.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$9.55</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/79-0718263">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">79-0718263</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Thadeus</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">St. Pierre</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">tstpierrea@nymag.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Insituto Universitario - Centro Latinoamericano de Economia Humana - IU Claeh</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">514-02-9312</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Dancing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Beatty, Klocko and McLaughlin</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$4.78</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/56-9848042">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">56-9848042</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Herbert</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Stronghill</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">hstronghillb@ebay.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Colorado College</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">177-84-0157</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Dancing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Hettinger-Medhurst</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.06</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/35-0761379">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">35-0761379</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Yvor</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Ingleby</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">yinglebyc@skype.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Academy of Public Administration</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">407-40-3220</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Dancing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Orn, Gorczany and Grimes</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">3.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.96</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/68-8131484">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">68-8131484</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Carling</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Lapidus</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">clapidusd@posterous.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidad Privada de Santa Cruz de la Sierra</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">442-35-8650</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Dancing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Schoen-Hermann</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">4.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.34</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/27-0754886">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">27-0754886</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Gardy</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Serginson</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">gserginsone@bloomberg.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidade Cruzeiro do Sul</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">849-94-0974</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Bogan-Ratke</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">5.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.14</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/27-9330637">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">27-9330637</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Vasilis</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Pregel</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">vpregelf@miibeian.gov.cn</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Université de Bretagne Occidentale</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">910-55-6042</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Bergnaum, Weissnat and Jacobi</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">6.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$6.32</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/27-0362710">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">27-0362710</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Heywood</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Mansion</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">hmansiong@merriam-webster.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Al Madinah International University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">273-92-2075</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Dibbert LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">7.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.41</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/66-6165895">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">66-6165895</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Timoteo</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">jo</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">tmottersheadh@scribd.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Tokyo University of Art and Design</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Mambusao</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">120-34-4500</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Daniel-Terry</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">8.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.37</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/22-9375976">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">22-9375976</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Clair</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Fardoe</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">cfardoei@gnu.org</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Hogeschool Inholland</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">244-22-6233</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Strosin-Wolf</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">9.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$9.38</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/42-9739994">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">42-9739994</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Barclay</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Laxson</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">blaxsonj@hc360.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Catholic University of Taegu-Hyosung</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">233-71-2102</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Dicki-Legros</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">10.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$9.24</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/83-4469400">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">83-4469400</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Mayer</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Rivitt</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">mrivittk@timesonline.co.uk</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">St. Petersburg State Technical University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">886-94-6539</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Beier, O'Conner and Pfeffer</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$4.29</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/27-5183665">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">27-5183665</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Archibold</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">O'Lyhane</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">aolyhanel@adobe.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Technical University of Sofia</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">600-27-2876</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Academics(subject)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Schaden, Ernser and Boehm</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.69</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/45-3979202">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">45-3979202</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Ogdon</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Fassum</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">ofassumm@e-recht24.de</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">DeVry Institute of Technology, Phoenix</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">983-40-0532</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Drawing/Painting</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Renner Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">3.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.50</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/41-2706979">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">41-2706979</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Chance</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Brendeke</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">cbrendeken@miitbeian.gov.cn</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidade Federal de Pelotas</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">A-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">664-29-3038</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Drawing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Nikolaus Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">4.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.99</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/92-5129855">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">92-5129855</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Donn</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Ripon</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">dripono@tinyurl.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidad Católica de Colombia</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">466-69-1149</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Drawing/painting</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Dickinson, McKenzie and Nolan</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">5.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.33</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/68-9131951">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">68-9131951</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Nobie</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Ilyasov</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">nilyasovp@csmonitor.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Stavropol State Technical University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">657-93-0108</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Drawing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Kulas and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">6.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.54</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/04-2921377">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">04-2921377</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Iorgo</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Heckner</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">ihecknerq@xrea.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Ural State Conservatory</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">449-52-2539</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical Instruments(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">West LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">7.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.40</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/93-2436173">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">93-2436173</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Goraud</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Waliszewski</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">gwaliszewskir@weibo.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Tribhuvan University Kathmandu</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">896-80-2080</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical Instruments(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Moore, Lebsack and Gleichner</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">8.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$4.30</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/69-1568478">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">69-1568478</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Reed</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Shawell</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">rshawells@odnoklassniki.ru</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">University of Baguio</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">A-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">932-86-2196</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical Instruments(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Kling-Sporer</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">9.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.94</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/62-1954503">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">62-1954503</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Jermain</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Laidler</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">jlaidlert@nifty.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Engineering College of Copenhagen</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">653-92-0904</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical Instruments(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Corwin-Okuneva</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">10.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$5.86</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/57-9574492">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">57-9574492</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Horatio</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">MacAskie</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">hmacaskieu@dailymail.co.uk</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Research College of Nursing - Rockhurst University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">169-73-0560</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical Instruments(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Berge-Harber</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.15</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/69-4314692">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">69-4314692</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Rikki</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Nobles</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">rnoblesv@salon.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Chiba Institute of Technology</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">868-31-9399</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">O'Kon, Toy and Crist</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$6.50</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/60-1803239">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">60-1803239</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Arley</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Iannuzzelli</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">aiannuzzelliw@wisc.edu</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Da-Yeh University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">319-57-9389</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Von Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">3.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.75</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/66-1739008">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">66-1739008</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Kerk</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Rebillard</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">krebillardx@admin.ch</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Tokyo University of Pharmacy and Life Science</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">667-98-1243</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Murphy Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">4.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$5.88</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/78-7062793">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">78-7062793</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Fin</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Bertlin</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">fbertliny@unesco.org</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Bourgas Free University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">228-17-7022</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Jakubowski Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">5.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$9.54</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/45-6099705">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">45-6099705</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Ashby</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Gallear</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">agallearz@bbc.co.uk</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Long Island University, Southampton College</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">173-26-9814</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical instrument+singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Stamm Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">6.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.32</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/69-8107527">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">69-8107527</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Osgood</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Wiz</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">owiz10@opera.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Rajshahi University of Engineering and Technology</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">977-64-1338</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical instrument+singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Beer Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">7.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.94</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/85-8808797">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">85-8808797</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Travers</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Hutley</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">thutley11@networksolutions.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">The Johns Hopkins University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">505-71-9635</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Tutor</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Musical instrument+singing</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Herzog Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">8.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.75</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/66-8579917">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">66-8579917</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Jeddy</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Vischi</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">jvischi12@fastcompany.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Western State University College of Law</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">305-20-6614</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Tube lights,CFL Bulbs</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Braun and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">9.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$6.51</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/03-7326717">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">03-7326717</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Erin</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Liebrecht</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">eliebrecht13@dagondesign.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Shaikh Zayed University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">A-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">666-85-5786</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Tube lights,CFL Bulbs</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Dach Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">10.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$6.36</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/52-3751584">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">52-3751584</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Brendon</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Natte</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">bnatte14@devhub.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Kolej Universiti Insaniah</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">421-39-3195</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Tube lights,CFL Bulbs</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Predovic, Wolf and Runolfsson</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.61</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/10-7411397">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">10-7411397</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Osborne</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Brattan</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">obrattan15@github.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Global Open University , Nagaland</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">358-80-1199</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(ceiling)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Dibbert and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.93</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/64-6319458">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">64-6319458</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Port</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">MacCawley</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">pmaccawley16@apple.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Northcentral University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">403-96-5616</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(ceiling)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Stamm LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">3.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.90</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/90-7573956">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">90-7573956</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Blaine</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Foy</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">bfoy17@cafepress.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">College of the Holy Cross</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">313-06-9837</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(standing)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Konopelski LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">4.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.06</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/70-1080000">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">70-1080000</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Gaelan</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Mulvenna</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">gmulvenna18@miitbeian.gov.cn</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Europa Fachhochschule Fresenius</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">500-28-1856</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(standing)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Bernhard and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">5.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$9.91</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/31-7947764">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">31-7947764</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Reade</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Dowd</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">rdowd19@ning.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidade para o Desenvolvimento do Alto Vale do Itajaí</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">620-17-0035</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(ceiling and standing)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Beer Group</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">6.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$5.87</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/49-2358266">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">49-2358266</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Estevan</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">jo</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">eleathe1a@studiopress.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidad de Puerto Rico, Bayamon</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Miratejo</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">691-71-1815</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(ceiling and standing)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Marks Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">7.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$7.21</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/08-7601196">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">08-7601196</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Traver</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Tryme</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">ttryme1b@tamu.edu</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">New Mexico Highlands University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">134-76-4745</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Fans(ceiling and standing)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Crist-Torphy</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">8.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$0.01</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/47-0382651">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">47-0382651</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Lance</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Dean</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">ldean1c@msu.edu</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Evangelische Fachhochschule Darmstadt</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">863-08-7792</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Power Supply(Inverter and UPS)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">McDermott LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">9.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.13</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/96-5535175">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">96-5535175</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Krisha</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Ewles</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">kewles1d@indiatimes.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">University of Wales Institute, Cardiff</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">242-68-4902</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Power Supply(Inverter and UPS)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">D'Amore LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">10.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$0.62</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/84-8638268">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">84-8638268</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Archer</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Northage</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">anorthage1e@pagesperso-orange.fr</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidad de las Américas (ULAM)</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">337-84-7469</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Power Supply(Inverter and UPS)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Leuschke, Connelly and Block</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$0.55</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/22-6879635">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">22-6879635</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Bendix</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Bolsover</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">bbolsover1f@shareasale.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">University of Maryland University College</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">B-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">482-52-3692</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Power Supply(Inverter and UPS)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">O'Connell Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$4.98</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/55-9727432">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">55-9727432</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Clint</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Hrinchishin</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">chrinchishin1g@dot.gov</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Esztergom Theological College</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">726-96-0304</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Switchboard and wiring</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Moen and Sons</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">3.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.15</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/21-1438189">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">21-1438189</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Dame</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Shew</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">dshew1h@mit.edu</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Nirma University</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">D-zone</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">672-60-7995</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Switchboard and wiring</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Breitenberg Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">4.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$1.03</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/00-2492021">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">00-2492021</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Sylas</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">McTerlagh</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">smcterlagh1i@soup.io</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">University of Alabama - Tuscaloosa</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">117-98-2802</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Switchboard and wiring</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Gutmann, Tromp and Lueilwitz</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">5.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$6.04</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/88-3023182">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">88-3023182</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Francois</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Zini</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">fzini1j@weather.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Baghdad College of Pharmacy</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">212-10-3450</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Switchboard and wiring</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Boyle-Hane</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">6.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$3.34</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/25-5099647">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">25-5099647</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Kahaleel</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Izkovicz</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">kizkovicz1k@vkontakte.ru</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">College of St. Mary</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">870-80-9681</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Other appliances(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Reichel Inc</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">7.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.86</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/09-6893106">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">09-6893106</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Herrick</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Reeders</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">hreeders1l@edublogs.org</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Gokhale Institute of Politics and Economics</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">240-90-3636</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Other appliances(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Lang, Lebsack and Schmeler</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">8.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$6.05</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/52-0254444">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">52-0254444</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Aguie</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Brodest</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">abrodest1m@seesaa.net</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Ecole Nationale Supérieure de Chimie de Toulouse</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">City centre</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">636-28-0707</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">Other appliances(mention)</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Skiles-Becker</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">9.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.42</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/92-4459801">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">92-4459801</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Corby</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Shepherd</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">cshepherd1n@facebook.com</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Universidad Nacional del Nordeste</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Bidhan Nagar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">980-53-6408</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Ward LLC</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">10.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$2.65</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/40-9406037">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">40-9406037</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Pattin</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">jo</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">psiuda1o@guardian.co.uk</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Male</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Corporación Universitaria Tecnológica de Bolivar</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Madalena do Mar</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">594-37-3155</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Bruen-Hansen</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">1.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$4.77</hasPaymentMode>
</rdf:Description>
<rdf:Description rdf:about="http://127.0.0.1:3333/46-0234000">
<hasAdhaarNo xmlns="http://127.0.0.1:3333/">46-0234000</hasAdhaarNo>
<hasFirstName xmlns="http://127.0.0.1:3333/">Gaylor</hasFirstName>
<hasLastName xmlns="http://127.0.0.1:3333/">Hain</hasLastName>
<hasEmail xmlns="http://127.0.0.1:3333/">ghain1p@columbia.edu</hasEmail>
<hasGender xmlns="http://127.0.0.1:3333/">Female</hasGender>
<hasAddress xmlns="http://127.0.0.1:3333/">Technological Education Institute of Mesologgi</hasAddress>
<hasLocality xmlns="http://127.0.0.1:3333/">Benachity</hasLocality>
<hasContact xmlns="http://127.0.0.1:3333/">463-47-2424</hasContact>
<hasSkill xmlns="http://127.0.0.1:3333/">Electrician</hasSkill>
<hasSubSkill xmlns="http://127.0.0.1:3333/">All</hasSubSkill>
<wasEmployedBy xmlns="http://127.0.0.1:3333/">Larson-Mitchell</wasEmployedBy>
<hasRating xmlns="http://127.0.0.1:3333/">2.0</hasRating>
<hasPaymentMode xmlns="http://127.0.0.1:3333/">$8.76</hasPaymentMode>
</rdf:Description>