-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile-example.json
6434 lines (6434 loc) · 240 KB
/
profile-example.json
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
{
"link": "https://www.xvideos.com/channels/dirtytinaofficial",
"pagefilter": "straight",
"id": 250613369,
"name": "DirtyTinaOfficial",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/yq6Dr_nyEUafrKlMKGhrKA==,1717230972/videos/profiles/profthumb/bc/d9/51/dirtytinaofficial/profile_1_big.jpg",
"sex": "Woman",
"ischannel": true,
"has_membership": true,
"galleries": [
"2331509"
],
"total_rating": "11,699",
"rating": "68.3%",
"has_friends": true,
"has_fans": true,
"banner": "https://profile-pics-cdn77.xvideos-cdn.com/JkXzf2SYmjEyFnJ9xqAfnw==,1717230972/videos/profiles/banners/bc/d9/51/dirtytinaofficial/banner_4_big.jpg",
"country": "Germany",
"info-pieces": [
{
"key": "Country:",
"value": "Germany"
},
{
"key": "Profile hits:",
"value": "13,274,617"
},
{
"key": "Subscribers:",
"value": "217,650"
},
{
"key": "Total video views:",
"value": "410,477,756"
},
{
"key": "Region:",
"value": "Nordrhein-Westfalen"
},
{
"key": "City:",
"value": "Münster"
},
{
"key": "Languages:",
"value": "Deutsch, English"
},
{
"key": "Signed up:",
"value": "May 15, 2018 (2,207 days ago)"
},
{
"key": "Last activity:",
"value": "<a id=\"goto-activity\">16 days ago</a>"
},
{
"key": "Contact:",
"value": "Chat with DirtyTinaOfficial"
},
{
"key": "Interests:",
"value": "All holes, Amateur, Anal, Creampie, Cum on pussy, Doggystyle, Gangbang, Milf, Party, Wet pussy"
},
{
"key": "Worked for/with:",
"value": "<a href=\"/profiles/dirtytina3\" class=\"text-danger\">DirtyTina</a>, <a href=\"/profiles/onurwellness\" class=\"text-danger\">OnurWellness</a>, <a href=\"/profiles/maximilianblackdeschler\" class=\"text-danger\">MaximilianBlackDeschler</a>, <a href=\"/profiles/florinajungbiele\" class=\"text-danger\">FlorinaJungBiele</a>, <a href=\"/profiles/tobiassuessbuchzik\" class=\"text-danger\">TobiasSuessBuchzik</a>, <a href=\"/profiles/kacykisha1\" class=\"text-danger\">KacyKisha</a>, <a href=\"/profiles/ismailhammeral\" class=\"text-danger\">IsmailHammerAl</a>, <a href=\"/profiles/noelcasting-elias\" class=\"text-danger\">NoelCasting Elias</a>, <a href=\"/profiles/kacykisha2\" class=\"text-danger\">Kacy Kisha</a>, <a href=\"/profiles/dochinavandui\" class=\"text-danger\">DoChinaVanDui</a>, <a href=\"/profiles/andy-star2\" class=\"text-danger\">Andy Star</a>, <a href=\"/profiles/mikimei1\" class=\"text-danger\">MikiMei</a>, <a href=\"/profiles/stephanspritzertebyl\" class=\"text-danger\">StephanSpritzerTebyl</a>, <a href=\"/profiles/rosellaextrem1\" class=\"text-danger\">Rosella Extrem</a>, <a href=\"/profiles/primislaushotklimek\" class=\"text-danger\">PrimislausHotKlimek</a>, <a href=\"/profiles/vanessahottenhumberg\" class=\"text-danger\">VanessaHotTenhumberg</a>, <a href=\"/profiles/emanuelinder\" class=\"text-danger\">EmanuelInder</a>, <a href=\"/profiles/mickitattooberndt\" class=\"text-danger\">MickiTattooBerndt</a>, <a href=\"/profiles/danny-gaga-model\" class=\"text-danger\">Danny Gaga</a>, <a href=\"/profiles/robertneukuell\" class=\"text-danger\">RobertNeuKuell</a>, <a href=\"/profiles/danieldreiermarzoll\" class=\"text-danger\">DanielDreierMarzoll</a>, <a href=\"/profiles/davidneumender\" class=\"text-danger\">DavidNeuMender</a>, <a href=\"/profiles/dennistattoo1\" class=\"text-danger\">DennisTattoo</a>, <a href=\"/profiles/frankneugerlach\" class=\"text-danger\">FrankNeuGerlach</a>, <a href=\"/profiles/big-chris-kessels\" class=\"text-danger\">Big Chris Kessels</a>, <a href=\"/profiles/lara-cumkitten\" class=\"text-danger\">Lara Cumkitten</a>, <a href=\"/profiles/catcoxx3\" class=\"text-danger\">Cat Coxx</a>, <a href=\"/profiles/bodo-froto-model\" class=\"text-danger\">Bodo Froto</a>, <a href=\"/profiles/markusbigbluemel\" class=\"text-danger\">MarkusBigBluemel</a>, <a href=\"/profiles/freddy-gong1\" class=\"text-danger\">Freddy Gong</a>, <a href=\"/profiles/holly-banks1\" class=\"text-danger\">Holly Banks</a>, <a href=\"/profiles/svendreierkiparski\" class=\"text-danger\">SvenDreierKiparski</a>, <a href=\"/profiles/frank-the-tank3\" class=\"text-danger\">Frank The Tank</a>, <a href=\"/profiles/connydachs\" class=\"text-danger\">ConnyDachs</a>, <a href=\"/profiles/costas-antonius1\" class=\"text-danger\">Costas Antonius</a>, <a href=\"/profiles/mariusfankipferl\" class=\"text-danger\">MariusFanKipferl</a>, <a href=\"/profiles/marcelkitchenhaupt\" class=\"text-danger\">MarcelKitchenHaupt</a>, <a href=\"/profiles/anny-aurora\" class=\"text-danger\">Anny Aurora</a>, <a href=\"/profiles/texas-patti2\" class=\"text-danger\">Texas Patti</a>, <a href=\"/profiles/mustafaluegeylmaz\" class=\"text-danger\">MustafaLuegeYlmaz</a>, <a href=\"/profiles/spangenthomas1\" class=\"text-danger\">SpangenThomas</a>, <a href=\"/profiles/jochenneukohler\" class=\"text-danger\">JochenNeuKohler</a>, <a href=\"/profiles/lisslonglegs\" class=\"text-danger\">LissLonglegs</a>, <a href=\"/profiles/florinaprettyweyers\" class=\"text-danger\">FlorinaPrettyWeyers</a>, <a href=\"/profiles/pascalfan\" class=\"text-danger\">PascalFan</a>, <a href=\"/profiles/zara-mendez\" class=\"text-danger\">Zara Mendez</a>, <a href=\"/profiles/dirktopschneider\" class=\"text-danger\">DirkTopSchneider</a>, <a href=\"/profiles/martino520\" class=\"text-danger\">Martino</a>, <a href=\"/profiles/julia-pink1\" class=\"text-danger\">Julia Pink</a>, <a href=\"/profiles/lou_nesbit-lia_louise1\" class=\"text-danger\">Lia Louise</a>, <a href=\"/profiles/danielhuebscherschuetz1\" class=\"text-danger\">DanielHuebscherSchuetz</a>, <a href=\"/profiles/gino-gemelli1\" class=\"text-danger\">Gino Gemelli</a>, <a href=\"/profiles/marie-skyler\" class=\"text-danger\">Marie Skyler</a>, <a href=\"/profiles/axxsteel\" class=\"text-danger\">AxxSteel</a>"
}
],
"description": "Hi, i am Tina and have been working as an amateur for many years. I have produced over 700 films and I am happy if you like them and some of them I will show you here.",
"videos": 191,
"videos_red": 0,
"photos": 10,
"videos_in_playlists": 0,
"ranks": [
{
"label": "Channel rankings (straight)",
"ranks": [
{
"label": "Germany only",
"ranks": [
{
"rank": 49,
"geo": "World",
"link": "/channels-index/from/germany/top",
"label": "Porn Channel Top Rankings (straight)"
},
{
"rank": 49,
"geo": "Europe",
"link": "/channels-index/europe/from/germany/top",
"label": "Porn Channels from Europe (straight) - Top Rankings"
}
]
},
{
"label": "Poland only",
"ranks": [
{
"rank": 59,
"geo": "World",
"link": "/channels-index/from/poland/top",
"label": "Porn Channel Top Rankings (straight)"
},
{
"rank": 59,
"geo": "Europe",
"link": "/channels-index/europe/from/poland/top",
"label": "Porn Channels from Europe (straight) - Top Rankings"
}
]
},
{
"label": "Worldwide",
"ranks": [
{
"rank": 636,
"geo": "World",
"link": "/channels-index/from/worldwide/top",
"label": "Porn Channel Top Rankings (straight)"
},
{
"rank": 134,
"geo": "Europe",
"link": "/channels-index/europe/from/worldwide/top",
"label": "Porn Channels from Europe (straight) - Top Rankings"
}
]
}
]
}
],
"activity": [
{
"title": "New videos",
"date": "",
"activity": [
"80329067",
"79333131",
"79029385",
"79029397",
"78283403",
"78286259"
]
},
{
"title": "<a href=\"/profiles/dirtytinaofficial\">DirtyTinaOfficial</a> uploaded 30 new free videos",
"date": "",
"activity": [
"78283409",
"78283423",
"75799607",
"75799639",
"75419913",
"74550267",
"74290515",
"74289989",
"74289873",
"74289487",
"74289321",
"73436371",
"73432757",
"73177585",
"72769955",
"72766841",
"72766663",
"72766349",
"72147462",
"71142483",
"69672003",
"69201221",
"68544989",
"67243305",
"66365967",
"64743513",
"64606555",
"64275925",
"63579017",
"63409595"
]
},
{
"title": "<a href=\"/profiles/dirtytinaofficial\">DirtyTinaOfficial</a> uploaded 12 new free videos",
"date": "",
"activity": [
"62740747",
"62585427",
"62089177",
"62067641",
"62013953",
"61949161",
"61928439",
"61792565",
"61775961",
"61388135",
"60497601",
"60264347"
]
},
{
"title": "content watched recently",
"date": "",
"activity": [
"41354131",
"59729005",
"51928157",
"75599911",
"75007237",
"47821193"
]
}
],
"friends_count": 0,
"friends": [],
"fans_count": 0,
"fans": [],
"comments": [
{
"id": "727945589866735829",
"date": "May 3, 2024, 10:59 AM",
"name": "Woncha1",
"link": "/profiles/woncha1",
"country": "US",
"message": "I've followed you and your sexcapades for years :heart::heart::heart:woo you add me sweetheart?",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/RDbtJfLJrBI_-dUtL0K9kw==,1717229635/videos/profiles/profthumb/4c/88/be/woncha1/profile_10_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "927870318150913439",
"date": "Mar 20, 2024, 5:23 AM",
"name": "Waveman70",
"link": "/profiles/waveman70",
"country": "US",
"message": "Love you Tina",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1055246738124518475",
"date": "Feb 17, 2024, 9:09 PM",
"name": "Ogeval",
"link": "/profiles/ogeval",
"country": "FR",
"message": "Vous etes super !",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/Io_-NMvn0qB--XQKi78sYA==,1717230731/videos/profiles/profthumb/c3/02/b6/ogeval/profile_12_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "149155505700406443",
"date": "Oct 29, 2023, 2:29 PM",
"name": "Glups4",
"link": "/profiles/glups4",
"country": "FR",
"message": "C'est fou ce qu'une mémère allemande qui s'emmerde à la maison peut faire comme conneries...",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "11139389472420550",
"date": "Sep 30, 2023, 6:55 PM",
"name": "Maturelover111",
"link": "/profiles/maturelover111",
"country": "US",
"message": "Hello Sexy Dirty girl...thanks for the add!!",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/cpTkocp8Lm9hjzwdtJawnQ==,1717230454/videos/profiles/profthumb/d3/90/df/maturelover111/profile_12_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "331234013151479042",
"date": "Sep 17, 2023, 3:55 AM",
"name": "Candyandmichael",
"link": "/candyandmichael",
"country": "IT",
"message": "hii",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/Zeh8sG4C8DwpRwUBpGE9bw==,1717231011/videos/profiles/profthumb/a3/a8/8c/candyandmichael/profile_1_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "364705478018819120",
"date": "Aug 31, 2023, 5:20 PM",
"name": "Wifexhibition",
"link": "/profiles/wifexhibition",
"country": "PE",
"message": "Hi Thankxxx for the add sexy lady, we're fans :kissing_heart:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/wEDUmB4sUslBeageV5zT7w==,1717230953/videos/profiles/profthumb/6a/e0/4a/wifexhibition/profile_17_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "109616453267269467",
"date": "Aug 30, 2023, 7:34 PM",
"name": "Sexisulo071",
"link": "/profiles/sexisulo071",
"country": "TR",
"message": "Oohhh",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/lenxzVM6pLdrdGJT0I7pfw==,1717229245/videos/profiles/profthumb/65/4d/fd/sexisulo071/profile_2_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "217937055055698165",
"date": "Aug 30, 2023, 7:34 PM",
"name": "Sexisulo071",
"link": "/profiles/sexisulo071",
"country": "TR",
"message": "hmmmmmmmmmmmm",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/lenxzVM6pLdrdGJT0I7pfw==,1717229245/videos/profiles/profthumb/65/4d/fd/sexisulo071/profile_2_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "960297471100108764",
"date": "Aug 22, 2023, 1:40 AM",
"name": "Robertbisexual69",
"link": "/profiles/robertbisexual69",
"country": "US",
"message": "HOLIS CALIENTES AÑADENME USO TANGA",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/Ajwz8Z3CgUMhoz560NQv3Q==,1717230921/videos/profiles/profthumb/b3/61/2c/robertbisexual69/profile_5_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "334229391595781552",
"date": "Aug 2, 2023, 6:30 AM",
"name": "Maturefuncouple",
"link": "/profiles/maturefuncouple",
"country": "GB",
"message": "love what you do hope we can be friends your hot and sexy",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/nzVP-r_KzjZCVogM9_UbEA==,1717230654/videos/profiles/profthumb/e6/31/d0/maturefuncouple/profile_59_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "353608605685337667",
"date": "Jul 21, 2023, 1:31 PM",
"name": "Ilovetolickwomen2",
"link": "/profiles/ilovetolickwomen2",
"country": "US",
"message": "Love How You Suck & Ride A Cock",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "723203693508112451",
"date": "Jul 13, 2023, 11:45 AM",
"name": "Maxxakokomus",
"link": "/profiles/maxxakokomus",
"country": "US",
"message": "Greetings from California :sun_with_face: ThanXX for Accepting My "Friends" Request!! ️:cherries:️",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/nvWXGLP5BFQ_YLqnAWdEGA==,1717231011/videos/profiles/profthumb/84/05/70/maxxakokomus/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "811175799840938545",
"date": "Jul 2, 2023, 8:50 AM",
"name": "Ogeval",
"link": "/profiles/ogeval",
"country": "FR",
"message": "Une femme magnifique ! :heart_eyes:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/Io_-NMvn0qB--XQKi78sYA==,1717230731/videos/profiles/profthumb/c3/02/b6/ogeval/profile_12_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "442457752532508078",
"date": "May 10, 2023, 2:45 PM",
"name": "Bikjnkdad360",
"link": "/profiles/bikjnkdad360",
"country": "US",
"message": "Happened to my family on a vacation we took to New Mexico and had a group of men and women ravished us for four days",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/mRiTfYoA7yPrQbwTyDTQEg==,1717230475/videos/profiles/profthumb/6f/55/9c/bikjnkdad360/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "569103742114982399",
"date": "Apr 16, 2023, 8:20 AM",
"name": "Ruitti",
"link": "/profiles/ruitti",
"country": "AR",
"message": "Hola me llamo Eduardo y quiero conocerte y poder estar frente a frente con vos y poder compartir mucho momentos juntos y disfrutar de las filmaciones con mucho placer y pasión hasta desmayar de tanto órganos que vamos a tener juntos",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/DKKNZz9EPaY4MZE58uDrpA==,1717230487/videos/profiles/profthumb/20/1e/be/ruitti/profile_3_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "363798377981141662",
"date": "Apr 13, 2023, 4:37 PM",
"name": "Itstheman64269",
"link": "/profiles/itstheman64269",
"country": "GB",
"message": "Tina you are the best. I would love to make a video with you",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "225049447637404750",
"date": "Apr 5, 2023, 1:05 AM",
"name": "Rbrr3",
"link": "/profiles/rbrr3",
"country": "HU",
"message": "You are the Best!!!",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/eifpnmPrd3sD3zFtRvNong==,1717229561/videos/profiles/profthumb/d9/3a/1b/rbrr3/profile_1_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "827678601269622813",
"date": "Feb 16, 2023, 7:23 AM",
"name": "Delphine131",
"link": "/profiles/delphine131",
"country": "FR",
"message": "tu a de belle photos je vais pouvoir me masturber en pensant à toi ma jolie",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/oU_7ANIV8kTRvoAPfoBCsQ==,1717231011/videos/profiles/profthumb/8d/fb/41/delphine131/profile_1_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "996672131123951953",
"date": "Feb 5, 2023, 5:56 AM",
"name": "M32Gld",
"link": "/profiles/m32gld",
"country": "NL",
"message": {
"m": "Hi there you lovely Tina. I saw this vid (hoping to see you take a shower), but it ain't you at all... ##A0A##",
"p": [
{
"t": "v",
"i": "https://gcore-pic.xvideos-cdn.com/videos/thumbs169/57/fd/49/57fd4907a05bbf4afebeb4814621f132/57fd4907a05bbf4afebeb4814621f132.21.jpg",
"u": "/video.itkpmdk2ab0/dirty_tina_after_shower_clean_again",
"r": 33777619,
"n": "Dirty Tina after shower clean again",
"x": 0
}
]
},
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "761951473175915263",
"date": "Feb 4, 2023, 4:52 PM",
"name": "Itw74",
"link": "/profiles/itw74",
"country": "RU",
"message": "Hallo!<br />\nCoole Videos. Ich liebe es, Kunigulis zu machen, besonders wenn die Vulva so groß ist. :yum::yum::yum:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/pyvgSQbCHeLUi0Anl5an-Q==,1717229855/videos/profiles/profthumb/a3/89/0b/itw74/profile_1_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "606090122043700073",
"date": "Dec 19, 2022, 6:51 PM",
"name": "Tjhsr6030",
"link": "/profiles/tjhsr6030",
"country": "US",
"message": "I, want to Make a Movie Eat My Own Creampies Out of You; You Say Which Holes or All I Shall Eat Even swallow if Safe” from Harms:100::gemini::100:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/5kQ7IL-h_gpWrrhX4ZrVNw==,1717230617/videos/profiles/profthumb/96/23/27/tjhsr6030/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "310458757332119356",
"date": "Dec 10, 2022, 10:30 PM",
"name": "Kurcho22",
"link": "/profiles/kurcho22",
"country": "GB",
"message": "you are my dream i will face you for a long time and then i will fuck you a lot ....",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/lJ-dT0CEGwmx4s5VNL89JA==,1717231011/videos/profiles/profthumb/08/82/f4/kurcho22/profile_1_medium.jpg",
"likes": 2,
"dlikes": 0,
"nested": false
},
{
"id": "1042034690992521303",
"date": "Dec 5, 2022, 5:22 PM",
"name": "Bossilyes",
"link": "/profiles/bossilyes",
"country": null,
"message": "Hast du jemals eine Doppelpenetration gemacht?",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/Fdq0vIojp-Cj4OEPWjTgVQ==,1717229829/videos/profiles/profthumb/96/26/b0/bossilyes/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "204229374788492322",
"date": "Nov 18, 2022, 3:16 PM",
"name": "Rudi-At",
"link": "/profiles/rudi-at",
"country": "AT",
"message": "Leider verweigerst du jeden Kontakt!!!<br />\nIch hätte schon ein adäquates Angebot. Gerne hätte ich dir Pics gesendet was genau ich damit meine!...what shells",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1035802996209694498",
"date": "Nov 12, 2022, 2:51 PM",
"name": "Hotcok1",
"link": "/profiles/hotcok1",
"country": "AU",
"message": "fuk suk daddys dik",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/q_9iSv3ZHp2nH_FD8N9-gw==,1717231011/videos/profiles/profthumb/67/b7/66/hotcok1/profile_1_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "44164453340398618",
"date": "Nov 10, 2022, 11:36 PM",
"name": "Jaydee-69",
"link": "/profiles/jaydee-69",
"country": "HR",
"message": "Tina you're such a gorgeous , seductive and sexy woman :heart:. I love your body and your videos are great !",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/5AqNMuWWJMgbo65W9xcQEA==,1717230888/videos/profiles/profthumb/c1/73/57/jaydee-69/profile_3_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "377979016536184359",
"date": "Nov 10, 2022, 10:31 PM",
"name": "Ramona Kid",
"link": "/profiles/ramona_kid",
"country": "US",
"message": "If you are into pissing i'd love to chat with you.",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/LlV34QwVJuI9YfWMAIVD-g==,1717231011/videos/profiles/profthumb/cd/75/c4/ramona_kid/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "379546173711740486",
"date": "Oct 29, 2022, 9:02 PM",
"name": "Lvwtpssy",
"link": "/profiles/lvwtpssy",
"country": "US",
"message": "Damn u a hot mama yesss!!",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/zsbLzcyS8d4oVMDX20i8DA==,1717229801/videos/profiles/profthumb/4a/cd/e5/lvwtpssy/profile_6_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "696842018136797899",
"date": "Oct 10, 2022, 3:21 PM",
"name": "Ludwik Wawa",
"link": "/profiles/ludwik_wawa",
"country": "PL",
"message": "Hello Tina. Can i be your friend from Poland? Chris. :smile:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/Wfdj3q-9yzvA0ZGG-YcJtw==,1717230831/videos/profiles/profthumb/c4/00/9a/ludwik_wawa/profile_3_medium.jpg",
"likes": 3,
"dlikes": 0,
"nested": false
},
{
"id": "305152289330950809",
"date": "Sep 20, 2022, 8:35 PM",
"name": "Chillwaver",
"link": "/profiles/chillwaver",
"country": "CA",
"message": "German Engineering. She's flawless. Body, soul and mind.",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/mMZ0uVREP3A07cRo_5fSpQ==,1717229343/videos/profiles/profthumb/8c/ee/d5/chillwaver/profile_3_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "743900809030834160",
"date": "Sep 14, 2022, 8:27 PM",
"name": "Johnpollon37",
"link": "/profiles/johnpollon37",
"country": "ES",
"message": "grabamos juntos?",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/QXJ0z2AKEny1Z_0AcC5svQ==,1717231011/videos/profiles/profthumb/fe/de/ed/johnpollon37/profile_1_medium.jpg",
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "627060733165960500",
"date": "Aug 31, 2022, 8:20 PM",
"name": "Momimomi333",
"link": "/profiles/momimomi333",
"country": "IL",
"message": "You are so fucking hottttt",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/vuGCIImvM3WV4P2LRcdJ0g==,1717230365/videos/profiles/profthumb/21/7b/aa/momimomi333/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "384476765835512267",
"date": "Aug 24, 2022, 9:49 PM",
"name": "Ilovemature89",
"link": "/profiles/ilovemature89",
"country": "GB",
"message": "Yes, I finally found your channel! You are absolutely gorgeous. Simply, the definition of Mature Goddess :heart:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/AokeFa36paOBnWpgUgbahQ==,1717231011/videos/profiles/profthumb/9c/e7/dc/ilovemature89/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "577704514908259810",
"date": "Jul 1, 2022, 6:58 AM",
"name": "Kristofseb",
"link": "/profiles/kristofseb",
"country": "FR",
"message": "???",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "32627000241523377",
"date": "Jun 18, 2022, 4:17 AM",
"name": "Ferrarii Foreign",
"link": "/ferrariiforeign",
"country": "US",
"message": ":sweat_drops::sweat_drops:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/XzB7cvcr497NHrLtT_ftlA==,1717231011/videos/profiles/profthumb/ef/e7/1a/ferrariiforeign/profile_3_medium.jpg",
"likes": 3,
"dlikes": 0,
"nested": false
},
{
"id": "899793867581494620",
"date": "Jun 13, 2022, 4:21 AM",
"name": "Sexisulo071",
"link": "/profiles/sexisulo071",
"country": "TR",
"message": "I Want Seeeexxxxxxxxxxxx!!!",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/lenxzVM6pLdrdGJT0I7pfw==,1717229245/videos/profiles/profthumb/65/4d/fd/sexisulo071/profile_2_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "415683934420878941",
"date": "Jun 12, 2022, 5:44 AM",
"name": "Rick James17",
"link": "/profiles/rick_james17",
"country": "PG",
"message": "Hey Tina, I want to make porn with you. Contact me please",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/0pgf7ZtKCR07ZmhFTgy7zA==,1717230047/videos/profiles/profthumb/1b/62/42/rick_james17/profile_6_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1130630885945551407",
"date": "Jun 10, 2022, 9:19 PM",
"name": "Sexisulo071",
"link": "/profiles/sexisulo071",
"country": "FR",
"message": "Du Bist So Sexy :tongue::fire::fire:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/lenxzVM6pLdrdGJT0I7pfw==,1717229245/videos/profiles/profthumb/65/4d/fd/sexisulo071/profile_2_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "892858614273042114",
"date": "Jun 10, 2022, 9:17 PM",
"name": "Sexisulo071",
"link": "/profiles/sexisulo071",
"country": "FR",
"message": "Your Pussy is Great and very nice :tongue::fire:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/lenxzVM6pLdrdGJT0I7pfw==,1717229245/videos/profiles/profthumb/65/4d/fd/sexisulo071/profile_2_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "659939644546480750",
"date": "May 5, 2022, 10:00 PM",
"name": "Phihoangnguyen690Xxxxxxxxxxx",
"link": "/profiles/phihoangnguyen690xxxxxxxxxxx",
"country": "US",
"message": ":watermelon::watermelon: SIE SIND VOLUPTUOUS @ 48 JAHRE ALT. N SIE BEKOMMEN NOCH MEINE SAFTIGE FETTE ASIATISCHE LECKERE SUPER SUPER SEHR HART N SUPER SUPER SEHR GEILE AUCH. N MEIN ASIATISCHES SAFTIGES VOLUPTUÖSES PHAT TROPFNASSES SÜSSES ARSCHLOCH AUCH",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/yndDL43-XIiTg88hNfng-w==,1717230154/videos/profiles/profthumb/4e/3b/f6/phihoangnguyen690xxxxxxxxxxx/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "325062101912018389",
"date": "May 5, 2022, 6:48 PM",
"name": "Xberray",
"link": "/profiles/xberray",
"country": "SN",
"message": "Can you have time with me",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/--J4Fyi-7Xg-jqq7H6u-9g==,1717231011/videos/profiles/profthumb/f0/93/a6/xberray/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1112496573698557193",
"date": "Apr 30, 2022, 10:06 AM",
"name": "Phihoangnguyen690Xxxxxxxxxxx",
"link": "/profiles/phihoangnguyen690xxxxxxxxxxx",
"country": "US",
"message": ":cherries::cherries:HALL WILL WIRKLICH WIRKLICH AUCH EINIGE IHRER MAJESTÄTISCHEN SÜßEN TROPFENNASSEN SÜßEN LÖCHER. N LIEBT ES, DICH MIT MEINEM PHATEN SAFTIGEN ASIATISCHEN FABELHAFTEN MONSTER COCK69ZILLA ZU ZERREISEN. N MEIN ASIATISCHES SAFTIG TROPFENNASSES SÜSSES ARSCHLOCH BRAUCHT AUCH ETWAS AUFMERKSAMKEIT :tongue: :yum:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/yndDL43-XIiTg88hNfng-w==,1717230154/videos/profiles/profthumb/4e/3b/f6/phihoangnguyen690xxxxxxxxxxx/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1002354487890935901",
"date": "Apr 29, 2022, 11:34 AM",
"name": "Bamse66666",
"link": "/profiles/bamse66666",
"country": "DK",
"message": "I would like to have one hour with you. :tongue::heart::kissing_heart:",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1115438757513510085",
"date": "Apr 25, 2022, 8:58 AM",
"name": "Rykery13",
"link": "/profiles/rykery13",
"country": "AU",
"message": "Still at it .",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/d0yUV8Q7pYvmXbRRlzjzLA==,1717231011/videos/profiles/profthumb/42/49/fc/rykery13/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "785496864964748589",
"date": "Apr 9, 2022, 5:24 PM",
"name": "Gizmotron Aq",
"link": "/profiles/gizmotron_aq",
"country": "ZA",
"message": "Oh but you rock....Wow!",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/k8qGmmMlsDR7gvTza78QZg==,1717230180/videos/profiles/profthumb/40/2d/b3/gizmotron_aq/profile_3_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "57963747570605868",
"date": "Apr 5, 2022, 10:33 AM",
"name": "Secondmant",
"link": "/profiles/secondmant",
"country": "AU",
"message": "What a MILF :fire::heart::sweat_drops:",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/IZHEmdCjmqt5CEdEu7Bqxw==,1717230361/videos/profiles/profthumb/19/d6/b1/secondmant/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "816641070698183038",
"date": "Mar 20, 2022, 10:26 AM",
"name": "Lord Xy",
"link": "/profiles/lord_xy",
"country": "AT",
"message": "Hallo Tina. Ich bin fasziniert von dir bitte sei mein erster"Feund" Kuss",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/ErX33JPpCfmuFWXaRaGi4Q==,1717229409/videos/profiles/profthumb/52/43/c8/lord_xy/profile_3_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "946237493804398585",
"date": "Mar 19, 2022, 5:07 PM",
"name": "Floorfiller",
"link": "/profiles/floorfiller",
"country": "GB",
"message": "stunning lass, love watching Tina",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/oBcyhqG0RebsCfmtMNEeIg==,1717229539/videos/profiles/profthumb/e7/a8/c2/floorfiller/profile_4_medium.jpg",
"likes": 0,
"dlikes": 1,
"nested": false
},
{
"id": "852372170992298584",
"date": "Mar 16, 2022, 7:52 PM",
"name": "Raylo95",
"link": "/profiles/raylo95",
"country": "CL",
"message": "congrats",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "888246189786117939",
"date": "Mar 16, 2022, 2:20 AM",
"name": "Super100Man",
"link": "/profiles/super100man",
"country": "IL",
"message": "hello gorgeous can you add me",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "141718101957196794",
"date": "Feb 21, 2022, 9:02 AM",
"name": "Fspproductions",
"link": "/fspproductions",
"country": "FR",
"message": "Thank you so much for your friendship, it's a pleasure, welcome,love Dirty you are perfect thank you, best regards,",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/JnscZexRbCIa4bOcowe6JA==,1717229555/videos/profiles/profthumb/3a/73/ea/fspproductions/profile_9_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "649451113080184721",
"date": "Feb 2, 2022, 8:48 AM",
"name": "Finntim",
"link": "/profiles/finntim",
"country": "FI",
"message": "Thank you for accepting me a dirty old horny man !",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/qs1o-mbd-XCRAIp1Vj_0lw==,1717231011/videos/profiles/profthumb/bf/15/41/finntim/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "456008417165300694",
"date": "Jan 11, 2022, 10:03 AM",
"name": "Frankduke007",
"link": "/profiles/frankduke007",
"country": "FR",
"message": "Hello Tina, I am a French man living in Luxembourg. I think you are extremely sexy and I would enjoy making videos with you. I am mature, active clean and tested regularly. How can I meet you ? kisses. Frank",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/O6mthMtTY9vQzyuqHhITWA==,1717231011/videos/profiles/profthumb/f8/86/20/frankduke007/profile_2_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1007154693662842154",
"date": "Jan 9, 2022, 11:53 AM",
"name": "Rudi-At",
"link": "/profiles/rudi-at",
"country": "AT",
"message": "OMG ich liebe deine herrlichen Löcher und deine tollen Möpse! Gerne lade ich dich auf einen dreh in Österreich ein.<br />\nBitte um Info:<br />\nRudi.unbekannt@gmail.com <br />\nGeile Grüße Rudi",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "311973184777239540",
"date": "Jan 8, 2022, 6:25 AM",
"name": "Etienne Pussy Lecker",
"link": "/profiles/etienne_pussy_lecker",
"country": "CH",
"message": "Hey Tina<br />\n<br />\nBei Interesse melde dich doch bitte<br />\nKuss Etienne",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/_o-QlYoj5OXDIv4xMTaSEg==,1717231011/videos/profiles/profthumb/44/5c/f4/etienne_pussy_lecker/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "122903833741989128",
"date": "Jan 4, 2022, 3:39 AM",
"name": "Megaslots",
"link": "/profiles/megaslots",
"country": "US",
"message": "Please could you do Fuck a Fan contest. Your so HOT.",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "171648055393938175",
"date": "Jan 2, 2022, 3:00 AM",
"name": "Royers2021",
"link": "/profiles/royers2021",
"country": "PE",
"message": "Gracias Tina , que encanto de mujer y todo un amor en el sexo , saludos desde Peru .",
"avatar": null,
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "791563004589481046",
"date": "Dec 30, 2021, 11:53 AM",
"name": "Simone1023",
"link": "/profiles/simone1023",
"country": "CY",
"message": "Hi Tina,you look fabulous. From simon field cyprus",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/_Ky48nX7dmWtsLlT_B6OZg==,1717231011/videos/profiles/profthumb/3c/1b/a9/simone1023/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "1045789166642641445",
"date": "Dec 12, 2021, 10:50 AM",
"name": "Darkmeat2",
"link": "/profiles/darkmeat2",
"country": "US",
"message": "You are one hot sexy lady",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/JwjzyVoNO2VYGGM3vvEK6w==,1717230004/videos/profiles/profthumb/8c/b3/d6/darkmeat2/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "976472228225293636",
"date": "Dec 12, 2021, 5:59 AM",
"name": "Chevyfuckboys71",
"link": "/profiles/chevyfuckboys71",
"country": "US",
"message": "you do good work is there anyway possible we can meet",
"avatar": null,
"likes": 0,
"dlikes": 2,
"nested": false
},
{
"id": "1076652470462871128",
"date": "Dec 10, 2021, 5:01 PM",
"name": "Naughty Dirty Old Prev",
"link": "/profiles/naughty_dirty_old_prev",
"country": "US",
"message": "Sexy and hot love it",
"avatar": null,
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "806187755283435633",
"date": "Dec 6, 2021, 4:41 AM",
"name": "Sam Gi 18Cm",
"link": "/profiles/sam_gi_18cm",
"country": "TW",
"message": "I am a little boy from Taiwan and want to have sex with you and your young girlfriend, thank you very much",
"avatar": null,
"likes": 1,
"dlikes": 0,
"nested": false
},
{
"id": "1135379224133719260",
"date": "Nov 21, 2021, 10:39 AM",
"name": "Blackdaughterlover",
"link": "/profiles/blackdaughterlover",
"country": "US",
"message": "best fucking a young family member, specially your own...",
"avatar": "https://profile-pics-cdn77.xvideos-cdn.com/SrmQKzJn3NRFcTVwLSXPmg==,1717231011/videos/profiles/profthumb/fb/37/cc/blackdaughterlover/profile_1_medium.jpg",
"likes": 0,
"dlikes": 0,
"nested": false
},
{
"id": "804915810511538476",
"date": "Nov 16, 2021, 10:54 PM",
"name": "Sjloebejoep",