Dataset Viewer
text
stringlengths 5
574k
| meta
dict | score
float64 0.01
0.2
|
---|---|---|
XXX
|
{
"pile_set_name": "Github"
}
| 0.2 |
xx
.x
xx
.x
xx
xx
.x
|
{
"pile_set_name": "Github"
}
| 0.190476 |
ene sucks
|
{
"pile_set_name": "Enron Emails"
}
| 0.111111 |
FUCK YOU>
|
{
"pile_set_name": "Enron Emails"
}
| 0.111111 |
ene sucks
|
{
"pile_set_name": "Enron Emails"
}
| 0.111111 |
lucky fuck
|
{
"pile_set_name": "Enron Emails"
}
| 0.1 |
2 2
.X
XX
|
{
"pile_set_name": "Github"
}
| 0.1 |
Q:
My program won't move to next line when reading from a txt file
I have been following a youtube tutorial for creating a tilemap.
My code is identical to the tutorial I am even using the same IDE.
However as the program reads from the text file it appears to not recognize the end of line:
#include<SFML/Graphics.hpp>
#include<iostream>
#include<fstream>
#include<cctype>
#include<string>
using namespace std;
int main()
{
ifstream openfile("map1.txt");
sf::Texture tileTexture;
sf::Sprite tiles;
sf::Vector2i map[500][200];
sf::Vector2i loadCounter = sf::Vector2i(0, 0);
if(openfile.is_open())
{
string tileLocation;
openfile >> tileLocation;
tileTexture.loadFromFile(tileLocation);
tiles.setTexture(tileTexture);
while(!openfile.eof())
{
string str;
openfile >> str;
char x = str[0], y = str[2];
if(!isdigit(x) || !isdigit(y))
map[loadCounter.x][loadCounter.y] = sf::Vector2i(-1, -1);
else
map[loadCounter.x][loadCounter.y] = sf::Vector2i(x - '0', y - '0');
if(openfile.peek() == '\n')
{
loadCounter.x = 0;
loadCounter.y++;
}
else
loadCounter.x++;
}
loadCounter.y++;
}
I thought it could be that the map array was too small for my text file so i increased it but got the same error or a stack overflow error.
As I see it in stepping out the program it increments loadCounter.x but never Increments loadcounter.y
Here's my textfile, sorry if the word wrap here is problematic (preview is showing the newlines so if you need a better representation of the txt file please let me know how i could do that thanx).
To give a short description here the file contains the name of the image to be loaded and sets of "coords" in an array of 40X25 sets.
Tileset.jpg
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
0,1 0,1 0,1 0,1 0,1 0,1 0,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
0,1 0,1 0,1 0,1 0,1 0,1 0,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
0,1 0,1 0,1 0,1 0,1 0,1 0,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
0,1 0,1 0,1 0,1 0,1 0,1 0,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
0,1 0,1 0,1 0,1 0,1 0,1 0,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
0,1 0,1 0,1 0,1 0,1 0,1 0,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x 1,1 1,1 1,1 1,1 x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x x,x
i get this error when building.
First-chance exception at 0x0006A30D in Angels Last Crusade.exe: 0xC0000005: Access violation writing location 0x0022003C.
Unhandled exception at 0x0006A30D in Angels Last Crusade.exe: 0xC0000005: Access violation writing location 0x0022003C.
There are two questions in my mind is the text file just too big requiring a much larger map array? or is there an error in my text file causing the code to miss the new line or the code looking for the wrong identifier of a new line?
A:
Two things are immediately apparent:
sf::Vector2i map[500][200];
This declares one-hundred-thousand sf:: Vector2i objects in the automatic variable space of main(). Depending on your local stack space configuration on your platform, this may be problematic. For example, to consume 1MB to stack space would only require about 11 bytes of space per object. You would be better off putting this on the heap or giving the array static linkage (ex: a global variable or declared as static). To put it on the heap, use a std::vector<> of std::array<>, like this:
#include <vector>
#include <array>
int main()
{
std::vector<std::array<sf::Vector2i,200>> map(500);
....
I would honestly choose a different name, btw, as map in any modern C++ program is easily equated to/as std::map<>. I leave that to you.
But I believe the real culprit even if you address the prior item is this:
while(!openfile.eof())
This is s wrong. Read this to better understand why. By not checking your IO results within your loop the last string extraction will fail, thereby leaving you with an empty string, which you then access using the unprotected operator[]. Specifically, this:
// after last successful string has been read, eof-bit is still not set...
while(!openfile.eof())
{
string str;
openfile >> str; // ... until this fails (which it will)
char x = str[0], y = str[2]; // this this, invokes undefined behavior
If you really want to do this correctly per line to ensure you don't overleap your bounds, something like this would likely be preferred:
std::ifstream openfile("map1.txt");
if (!openfile.is_open())
return EXIT_FAILURE;
sf::Texture tileTexture;
sf::Sprite tiles;
// TODO: this should be checked as well
openfile >> tileLocation;
tileTexture.loadFromFile(tileLocation);
tiles.setTexture(tileTexture);
// our tile map.
std::vector<std::vector<sf::Vector2i>> mymap;
std::string line;
while (std::getline(openfile,line))
{
std::vector<sf::Vector2i> row;
std::istringstream iss(line)
std::string str;
while (iss >> str && str.length() >=3)
{
char x = str[0], y = str[2];
if(!isdigit(x) || !isdigit(y))
row.push_back(sf::Vector2i(-1, -1));
else
row.push_back(sf::Vector2i(x - '0', y - '0'));
}
if (!row.empty())
mymap.emplace_back(row);
}
This has the one drawback of the potential for a variable row width (which may be ok, depending on how you handle that in your code). The number of rows read is simply:
mymap.size()
and the number of pairs in any given row is:
mymap[rownum].size()
Anyway, I hope you get something out of it. Best of luck.
|
{
"pile_set_name": "StackExchange"
}
| 0.093547 |
you guys suck
|
{
"pile_set_name": "Enron Emails"
}
| 0.076923 |
Bitch Gets what Bitch Needs
|
{
"pile_set_name": "OpenWebText2"
}
| 0.074074 |
Bitch Gets what Bitch Needs
|
{
"pile_set_name": "OpenWebText2"
}
| 0.074074 |
British bbw tit wank Porn Videos
All the best bbw tit wank British Porn videos from all over the world featuring charming sexy beauties who ready to do anything for bbw tit wank sex movies. On the bbw tit wank search on Free British Porn Tube.
|
{
"pile_set_name": "Pile-CC"
}
| 0.069672 |
he hurts cock in the ass and he likes it a lot. anal creampie
|
{
"pile_set_name": "OpenWebText2"
}
| 0.065574 |
A12 #hentai
A33 #yaoi
A34 #yuri
M12 #hentai
M33 #yaoi
M34 #yuri
|
{
"pile_set_name": "Github"
}
| 0.061538 |
Description: Sexy blonde babe with big boobs gets hardcore anal sex with a big cock and she is damn good at blowjob
|
{
"pile_set_name": "OpenWebText2"
}
| 0.06087 |
VIEWS: 8736
Forced to cum with bound tits
Busty blonde in bondage with tied boobs forced to orgasm!
|
{
"pile_set_name": "OpenWebText2"
}
| 0.059406 |
She is so horny she need this cock
|
{
"pile_set_name": "OpenWebText2"
}
| 0.058824 |
My bbw friend cumming on my couch then i cum on her
|
{
"pile_set_name": "OpenWebText2"
}
| 0.058824 |
Warming up --------------------------------------
clamp_a XXX i/100ms
clamp_b XXX i/100ms
clamp_a XXX i/100ms
clamp_b XXX i/100ms
clamp_a XXX i/100ms
clamp_b XXX i/100ms
Calculating -------------------------------------
clamp_a XXX (XXX%) i/s - XXX
clamp_b XXX (XXX%) i/s - XXX
clamp_a XXX (XXX%) i/s - XXX
clamp_b XXX (XXX%) i/s - XXX
clamp_a XXX (XXX%) i/s - XXX
clamp_b XXX (XXX%) i/s - XXX
Comparison:
XXX
|
{
"pile_set_name": "Github"
}
| 0.056561 |
perfect nude girl in the erotic sex play with her lover
|
{
"pile_set_name": "OpenWebText2"
}
| 0.054545 |
Sexy Latina Cassidy Banks first hardcore scene. This hot slut gets fuck and does some hot titty fucking action.
|
{
"pile_set_name": "OpenWebText2"
}
| 0.054054 |
no one around to rape better rape my own ass
387 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.053571 |
Eats ALL Jizz Of Penis (Jizz Clean Up By WasteNotWantNot)
|
{
"pile_set_name": "OpenWebText2"
}
| 0.052632 |
Audrey Bitoni needs to fuck her big dick colleague to cum
|
{
"pile_set_name": "OpenWebText2"
}
| 0.052632 |
west indian porn girl porn video, west indian porn girl xxx, west indian porn girl vids, west indian porn girl nude, west indian porn girl anal, west indian porn girl naked, west indian porn girl movies, west indian porn girl porno, west indian porn girl oral, west indian porn girl movie,
|
{
"pile_set_name": "Pile-CC"
}
| 0.051903 |
Nude milf strutting her stuff with just her red panties on
|
{
"pile_set_name": "OpenWebText2"
}
| 0.051724 |
Japanese three girls blowjob
blowjob Japanese three girls blowjob sex, XX2605 Japanese three girls blowjob sex, japanese Japanese three girls blowjob sex, XX65E5 Japanese three girls blowjob sex, XX672C Japanese three girls blowjob sex, XX4EBA Japanese three girls blowjob sex, asian Japanese three girls blowjob sex, girls Japanese three girls blowjob sex, aika Japanese three girls blowjob sex, 123 Japanese three girls blowjob sex, jap Japanese three girls blowjob sex, japan Japanese three girls blowjob sex, bj Japanese three girls blowjob sex, some Japanese three girls blowjob sex, japan2 Japanese three girls blowjob sex, Japanese three girls blowjob sex,
|
{
"pile_set_name": "Pile-CC"
}
| 0.051205 |
Busty callgirl gives pov blowjob and gets cum on her bosoms
|
{
"pile_set_name": "OpenWebText2"
}
| 0.050847 |
Everything Butt 9 - MILF Anal Domination
Everything Butt 9 - MILF Anal Domination
Angela Attison is dominated and fucked in her asshole by Krissy Lynn in this sexy update! Angela gets her ass spanked good and hard and gets her butt hole gaping from anal toys. Then she's made to where a dildo gag and fuck Krissy's ass until she cums hard. This scene has lots of ass worship and anilingus along with anal strap-on sex!
|
{
"pile_set_name": "Pile-CC"
}
| 0.05 |
BRUTAL PEGGING by amateur girl - she fucks better than ANY man! Femdom strapon sex with huge cumshot
|
{
"pile_set_name": "OpenWebText2"
}
| 0.05 |
Cum addicted slut with huge ass gets ready to be poked doggy
|
{
"pile_set_name": "OpenWebText2"
}
| 0.05 |
Wow โ shemale Kitty Doll is a sexy full bodied tgirl with huge boobs, a sexy curvy body and a rock hard cock! Enjoy more from Shemale Kitty Doll at Shemale XXX !!
|
{
"pile_set_name": "OpenWebText2"
}
| 0.049383 |
VIEWS: 16569
Deepthroat Blowjob for MILF
Dominated MILF forced to take it deep!
|
{
"pile_set_name": "OpenWebText2"
}
| 0.049383 |
Pathetic sissy slut Lee ruins his orgasm and licks up his cum
|
{
"pile_set_name": "OpenWebText2"
}
| 0.04918 |
VIEWS: 9933
Throat Fucking Training
Now that's how to train a slut to suck cock!
|
{
"pile_set_name": "OpenWebText2"
}
| 0.04878 |
If you leak her nudes, you a bitch ass nigga
If you giving out her personal information for revenge, you a bitch ass nigga
|
{
"pile_set_name": "OpenWebText2"
}
| 0.04878 |
She just love to suck my cock and make me
|
{
"pile_set_name": "OpenWebText2"
}
| 0.04878 |
Shit Shit Shit Shit Shit Shit Caption 7 goes here Caption 8 goes here Caption 9 goes here Shit Shit YO DAWG Shit Caption 14 goes YO DAWG Shit YO DAWG Caption 17 goes here Shit Caption 19 goes here Shit Caption 21 goes here YO DAWG Shit Caption 24 goes her
5,494 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.048327 |
Amateur Three Way Anal With Anal Cream Pie
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047619 |
Big Tits Amateur Wife knows how to Suck a Big Dick before an Intense Anal POV in bed
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047619 |
My Pussy so big after Pump.I continue fuck my ass and squirting
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047619 |
Do As I Say Dog Bitch
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047619 |
Using Her Big Tits and Ass To Get BBC
268
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047619 |
Hot blonde sex cam girl with beautiful big tits fingering her wet pussy live on cam.
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047619 |
I don't always lose at video games but when I do, asshole bitch shit fuck piss crap damn it fucking little bitch.
1,421 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.047244 |
This porn video is titled German gangbang cumming party and is related to piss cum cumshot amateur milf group blowjob gangbang german bukakke fivesome forusome threesome young teen big cock many cocks party sperm sperma golden shower.
|
{
"pile_set_name": "Pile-CC"
}
| 0.047009 |
DELiCiOUS SHAWTY
Description :
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
I FUCK THE FURIOUS !
|
{
"pile_set_name": "Pile-CC"
}
| 0.046957 |
Oiled Buttjob Close Up And Jizz On Butt Pov
|
{
"pile_set_name": "OpenWebText2"
}
| 0.046512 |
Longest Creampie Porn Tube Videos
The longest creampie sex tube videos and short clips will make you cum five times in a row! Itโs not a joke man, the view of juicy cunt dripping hot sperm on the floor is beautiful! Enjoy watching best creampie sex videos and creampie porn clips in the longest creampie sex tube videos category. Black pussy creampie, tight asshole creampie, gaping ass creampie porn videosโฆ
|
{
"pile_set_name": "Pile-CC"
}
| 0.046455 |
Latina coed is jolly with a cock in her ass Latina coed is jolly with a cock in her ass
|
{
"pile_set_name": "OpenWebText2"
}
| 0.045977 |
This is a first video of Teen girl Anal Fuck with Squirting Orgasm. That Big Cock softly pounded in her ass and finally she squirt while dick in her ass.
|
{
"pile_set_name": "OpenWebText2"
}
| 0.045752 |
Jester
You are a fag.
|
{
"pile_set_name": "Enron Emails"
}
| 0.045455 |
Super Seductive Teen With Perfect Boobs Knows How To Fuck And Suck
|
{
"pile_set_name": "OpenWebText2"
}
| 0.045455 |
07:09
Busty milf brunette is jumping up and down on his huge dick
|
{
"pile_set_name": "OpenWebText2"
}
| 0.045455 |
Somebody fuck me
Somebody fuck me right now
|
{
"pile_set_name": "OpenWebText2"
}
| 0.045455 |
fuck fri. go out sat.
|
{
"pile_set_name": "Enron Emails"
}
| 0.045455 |
05:13
Sexy big boobs babe sucks huge dong and gets ass fucked for the first time 0% 1989
|
{
"pile_set_name": "OpenWebText2"
}
| 0.044944 |
I treated that bitch like shit. Bitches love it when you treat 'em like shit.
240 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.044944 |
He is licking her big tits and sexy blonde Alexis Monroe is sucking his big hard cock. after that he is fucking her wet pussy on couch. He is fucking her pussy and fingering her asshole. After that he is cumming on her face.
|
{
"pile_set_name": "Pile-CC"
}
| 0.044643 |
Roberta Gemma โ Sexy Roberta Gemma gets fucked and cum in the ass by a black cock
672 69%
|
{
"pile_set_name": "OpenWebText2"
}
| 0.044444 |
Nervous redhead sucks cock as deep as she can
|
{
"pile_set_name": "OpenWebText2"
}
| 0.044444 |
Max Anal Porn present Horny chicks with hot asses for you pleasure. You can find here fantastic rim job, deep anal, brutal ass fucking and other anal actions!
|
{
"pile_set_name": "OpenWebText2"
}
| 0.044304 |
Ivy Lebelle โ Ivy Lebelle Gets Her Pussy & Asshole Stuffed With Cock
|
{
"pile_set_name": "OpenWebText2"
}
| 0.044118 |
03:59
Men and women enjoy orgy with a sexy sex slave bound in leather spanking her in bondage sex video 100% 2254
|
{
"pile_set_name": "OpenWebText2"
}
| 0.04386 |
Tied up and made to cum
|
{
"pile_set_name": "OpenWebText2"
}
| 0.043478 |
01:02
Fucking Her Hard then Cumming on Her Cute Fucking Face 1315 0%
|
{
"pile_set_name": "OpenWebText2"
}
| 0.043478 |
Having sex with asian girlfriend with cumshots
|
{
"pile_set_name": "OpenWebText2"
}
| 0.043478 |
Big dick Latino gives his ass UP to pretty mixed boy with a huge cock
|
{
"pile_set_name": "OpenWebText2"
}
| 0.043478 |
Not sure if "shit like this" is good shit or bad shit
118,633 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.043478 |
mom masturbating with son tube milf, mom masturbating with son tube nude, mom masturbating with son tube porn, mom masturbating with son tube homemade, mom masturbating with son tube oral, mom masturbating with son tube sexxx, mom masturbating with son tube sex, mom masturbating with son tube anal, mom masturbating with son tube xxx, mom masturbating with son tube pornxxx,
|
{
"pile_set_name": "Pile-CC"
}
| 0.042667 |
*
2 .
Is it morally ok to suck your own dick?
|
{
"pile_set_name": "OpenWebText2"
}
| 0.042553 |
Milfs Like It Big, Perfect Body is Fucking Like a Real Whore on Camera. Milf Porn Video Watch.
|
{
"pile_set_name": "OpenWebText2"
}
| 0.042553 |
latino xxxl bareback at work
at work these 2 muscle lastino fuck bareback with xxl dick COMPLETE GAY FRENCH VIDEO AMATOR SUCK FUCK AND JERK OFF at work these 2 muscle lastino fuck bareback with xxl dick COMPLETE GAY FRENCH VIDEO AMATOR SUCK FUCK AND JERK OFF
|
{
"pile_set_name": "Pile-CC"
}
| 0.042471 |
men eating pussy on the beach video, men eating pussy on the beach porn, men eating pussy on the beach porn video, men eating pussy on the beach sexy, men eating pussy on the beach erotic, men eating pussy on the beach adult, men eating pussy on the beach jizzbo, men eating pussy on the beach fuck, men eating pussy on the beach hot, men eating pussy on the beach erotic video,
|
{
"pile_set_name": "Pile-CC"
}
| 0.042328 |
amateur unwanted cum in mouth
Click to this video!
Here you watched amateur unwanted cum in mouth tube videos, if you want to see moreamateur unwanted cum in mouth videos or some other porn please feel free to use our search form so we will be able to find for you any african teen amateur blowjob cum in mouth you want, so enjoy your watching unwanted amateur and african teen amateur blowjob cum in mouth .
Young amateur blowjob cum in mouth
Amateur allure cum in mouth
Amateur girlfriend cum in mouth with a mask
Horny amateur best cum in mouth
Amateur xxx cum in mouth
Amateur allure cum in mouth swallow
ebony teen amateur blowjob cum in mouth
Horny amateur blowjob cum in mouth
Hot amateur redhead cum in mouth
Chinese amateur wife cum in mouth
Hot amateur redhead cum in mouth
Hot amateur blowjob cum in mouth
Busty amateur surprise cum in mouth
Amateur babe cum in mouth
Italian amateur surprise cum in mouth
ebony teen amateur blowjob cum in mouth
black teen amateur blowjob cum in mouth
black teen amateur blowjob cum in mouth
Amateur teen GF anal fuck with cum in mouth
Amateur anal fuck and cum in mouth
Amateur teen GF home action with cum in mouth - Go2Cams.com
Amateur anal fuck and cum in mouth PornPW.com
Busty amateur teen gets a mouthful of cum!
Hot Amateur Blowjob With Cum In Mouth POV
Big natural tits amateur gives blowjob for mouthful of cum
Sexy Amateur Blonde Teen Face Fuck - Cum in Mouth
asian blowjob cum in mouth amateur
Dirty talking handjob amateur with big tits cum in mouth
Amateur Milf Fuck And Cum In Mouth
Amateur Anal And Cum in Mouth
real amateur blowjob and cum in mouth compilation
Ex Girlfriend Homemade Blowjob Cum In Mouth - Amateur Oral Creampie
Hot blonde amateur girlfriend action with cum in mouth
Madison's amateur POV blowjob and cum in mouth
Amateur teen girlfriend threesome with cum in mouth
Amateur ass fucking and cum to mouth
Amateur milf fuck and cum in mouth
Busty amateur Milf outdoor action with cum in mouth
Amateur girlfriend full blowjob with cum in mouth
Amateur teen girlfriend toys and sucks with cum in mouth
Amateur anal and cum in mouth
Amateur cocksucker teen mouth full of cum. Then playing with cum in mouth.
|
{
"pile_set_name": "Pile-CC"
}
| 0.042266 |
Cleopatra fuck ass movie free porn
Her bush is big, her lips are fat and long and her gaping vagina is also quite big and wide open when she spreads it. Lesbian , Greek , Kinky , Blonde , Blowjob. Bbw , Mature , Ass , Anal , Doggystyle.
|
{
"pile_set_name": "Pile-CC"
}
| 0.042194 |
10:18 HD
Try Anal Fisting Deep Anal Fisting From A Lesbian In White Holdup Stockings 100% 1863
|
{
"pile_set_name": "OpenWebText2"
}
| 0.042105 |
Watch this short clip with big ass black tranny who push out creampie from the ass. If you like watching cream, cumshot and jizz in the ass this video is for you. In this scene you can observe that this black bitch doesn`t want this cream inside anymore. Watch this scene with sexy big ass black shemale has creampied anus. Nice video with jizz in tranny ass.
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041783 |
Oh karma whore you would suck dick for karma if they let you
163 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041667 |
Her first porno she made
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041667 |
Sexy Japanese MILF in Tight too Short Miniskirt ! Upskirt Shame on her !
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041667 |
About to have sex, but out of condoms? HAVE BUTT SEX INSTEAD
898 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041667 |
Four eyed hussy bitch gives blowjob at the party
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041667 |
Begs From Cream Pie While Cumming On Juicy Penis
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041667 |
Male sex pics
Shemale on shemale porn videpo
More Hot Shemale on Shemale fucking. Thick teenage tranny with big boobs gets smashed in bed Shemale threesome, group sex with blonde, brune Compilation of busty shemales being banged and banging male asses Curvy shemale has bareback anal sex with a skinny dude 5: Preppy girl has fun with boyfriend. Girl penetrates partner because she has main male part of body
|
{
"pile_set_name": "Pile-CC"
}
| 0.041463 |
Don't look at her boobs, Don't look at her boobs, Don't look at her boobs, Don't look at her boobs... SHIT!
4,843 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041322 |
Benefits of sex for men pic
Benefits of sex for men pic
Date 22.01.2019, 14:56
Rating: 1.1/1.0
Benefits of sex for men nude, Benefits of sex for men photo, Benefits of sex for men pussy, Benefits of sex for men xxx, Benefits of sex for men instagram, Benefits of sex for men sex, Benefits of sex for men selfie.
|
{
"pile_set_name": "Pile-CC"
}
| 0.04127 |
WATCH Farrah Abraham HARDCORE Sex Tapes at VIVID
OMG how fucking hot is hardcore sex tape star and basically porn star showing off her sexy curves Farrah Abraham? Showing off in a sexy bikini Farrah has a fabulous big round juicy ass and some big tits ๐ Love her new pussy too! That she showed off in live sex cam show! That was fucking amazing. Click now and watch Farrah Abraham suck cock, get fucked, enjoy anal sex and tons of cum in her famous sex tapes!
WATCH Farrah Abraham HARDCORE Sex Tapes at VIVID
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041176 |
Female girls full nude porn sex wallpeper
This female girls full nude porn sex wallpeper stunning incest porn tube is your door to the world of family porn! Raped Girls Forced Sex Rape Videos Old Young Fuck. Incest Videos G : Incest-Porn. org website contains adult materials. If you are under 18 years of age please leave Incest Porn.org.
|
{
"pile_set_name": "Pile-CC"
}
| 0.041176 |
I love slobbering deepthroat blowjob and playing with his cum in my mouth
|
{
"pile_set_name": "OpenWebText2"
}
| 0.041096 |
Young guy fucks sex toy and cums on it dick
I wanted to take it in the ass, so I took my favorite sex toy and I enjoyed it so much, finally...
Cum on your favorite sex toy and use the cum as lube for your ass. Enjoy!
Cum on your favorite sex toy and use the cum as lube for your ass. Enjoy!
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040956 |
Girls with Small Tits,
Small Boobs & Small Breasts
i smalltits is not about young teens with small tits! No its simply about nude girls
with small tits & small boobs. Those can be mature tits, nice tits, teen tits,
little tits, natural tits, young tits, old tits, well i think you get the picture? -
Enjoy our Small Titties Collection - [Tiny
Tits Pics] [Small Tits
Blog] - & Follow Us @ Twitter - i Small Tits Team
|
{
"pile_set_name": "Pile-CC"
}
| 0.040865 |
How the fuck does that fit in her ass
182 shares
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040816 |
Ready Or Not Here I Cum โ Montse Swinger
942 29%
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040816 |
Hot milf mom comes to my studio and wants to fuck
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040816 |
VOYEUR ON THE BEACH 7 couple fuck on the seashore
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040816 |
Thai Whore Takes Cock All The Way Down Her Throat
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040816 |
04:24
Couple Record Themselves Fucking and GF gets Anal Creampie 1815 50%
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040541 |
09:46
Sexy Young Sits on her Boyfriend's Dick - Cowgirl and Squat Fucking
|
{
"pile_set_name": "OpenWebText2"
}
| 0.040541 |
Can i have sex with hpv photos
Can i have sex with hpv photos
Date 21.01.2019, 23:55
Rating: 1.7/3.0
Can i have sex with hpv nude, Can i have sex with hpv photo, Can i have sex with hpv pussy, Can i have sex with hpv xxx, Can i have sex with hpv instagram, Can i have sex with hpv sex, Can i have sex with hpv selfie.
|
{
"pile_set_name": "Pile-CC"
}
| 0.040498 |
End of preview. Expand
in Data Studio
No dataset card yet
- Downloads last month
- 10