[
  {
    "path": ".gitignore",
    "content": "experiments\n*DS_Store\n\n# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\npip-wheel-metadata/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n.hypothesis/\n.pytest_cache/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n.python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# celery beat schedule file\ncelerybeat-schedule\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/"
  },
  {
    "path": "README.md",
    "content": "# Minimalist Implementation of a BERT Sentence Classifier\n\nThis repo is a minimalist implementation of a BERT Sentence Classifier.\nThe goal of this repo is to show how to combine 3 of my favourite libraries to supercharge your NLP research.\n\nMy favourite libraries:\n- [PyTorch-Lightning](https://pytorch-lightning.readthedocs.io/en/latest/)\n- [Transformers](https://huggingface.co/transformers/index.html)\n- [PyTorch-NLP](https://pytorchnlp.readthedocs.io/en/latest/index.html)\n\n\n## Requirements:\n\nThis project uses Python 3.6\n\nCreate a virtual env with (outside the project folder):\n\n```bash\nvirtualenv -p python3.6 sbert-env\nsource sbert-env/bin/activate\n```\n\nInstall the requirements (inside the project folder):\n```bash\npip install -r requirements.txt\n```\n\n## Getting Started:\n\n### Train:\n```bash\npython training.py\n```\n\nAvailable commands:\n\nTraining arguments:\n```bash\noptional arguments:\n  --seed                      Training seed.\n  --batch_size                Batch size to be used.\n  --accumulate_grad_batches   Accumulated gradients runs K small batches of \\\n                              size N before doing a backwards pass.\n  --val_percent_check         If you dont want to use the entire dev set, set \\\n                              how much of the dev set you want to use with this flag.      \n```\n\nEarly Stopping/Checkpoint arguments:\n```bash\noptional arguments:\n  --metric_mode             If we want to min/max the monitored quantity.\n  --min_epochs              Limits training to a minimum number of epochs\n  --max_epochs              Limits training to a max number number of epochs\n  --save_top_k              The best k models according to the quantity \\\n                            monitored will be saved.\n```\n\nModel arguments:\n\n```bash\noptional arguments:\n  --encoder_model             BERT encoder model to be used.\n  --encoder_learning_rate     Encoder specific learning rate.\n  --nr_frozen_epochs          Number of epochs we will keep the BERT parameters frozen.\n  --learning_rate             Classification head learning rate.\n  --dropout                   Dropout to be applied to the BERT embeddings.\n  --train_csv                 Path to the file containing the train data.\n  --dev_csv                   Path to the file containing the dev data.\n  --test_csv                  Path to the file containing the test data.\n  --loader_workers            How many subprocesses to use for data loading.\n```\n\n**Note:**\nAfter BERT several BERT-like models were released. You can test different size models like Mini-BERT and DistilBERT which are much smaller.\n- Mini-BERT only contains 2 encoder layers with hidden sizes of 128 features. Use it with the flag: `--encoder_model google/bert_uncased_L-2_H-128_A-2`\n- DistilBERT contains only 6 layers with hidden sizes of 768 features. Use it with the flag: `--encoder_model distilbert-base-uncased`\n\nTraining command example:\n```bash\npython training.py \\\n    --gpus 0 \\\n    --batch_size 32 \\\n    --accumulate_grad_batches 1 \\\n    --loader_workers 8 \\\n    --nr_frozen_epochs 1 \\\n    --encoder_model google/bert_uncased_L-2_H-128_A-2 \\\n    --train_csv data/MP2_2022_train.csv \\\n    --dev_csv data/MP2_2022_dev.csv \\\n```\n\nTesting the model:\n```bash\npython test.py --experiment experiments/version_{date} --test_data data/MP2_2022_dev.csv\n```\n\n### Tensorboard:\n\nLaunch tensorboard with:\n```bash\ntensorboard --logdir=\"experiments/\"\n```\n\n### Code Style:\nTo make sure all the code follows the same style we use [Black](https://github.com/psf/black).\n"
  },
  {
    "path": "classifier.py",
    "content": "# -*- coding: utf-8 -*-\nimport logging as log\nfrom argparse import ArgumentParser, Namespace\nfrom collections import OrderedDict\n\nimport numpy as np\nimport pandas as pd\nimport pytorch_lightning as pl\nimport torch\nimport torch.nn as nn\nfrom torch import optim\nfrom torch.utils.data import DataLoader, RandomSampler\nfrom torchnlp.encoders import LabelEncoder\nfrom torchnlp.utils import collate_tensors, lengths_to_mask\nfrom transformers import AutoModel\n\nfrom tokenizer import Tokenizer\nfrom utils import mask_fill\n\n\nclass Classifier(pl.LightningModule):\n    \"\"\"\n    Sample model to show how to use a Transformer model to classify sentences.\n\n    :param hparams: ArgumentParser containing the hyperparameters.\n    \"\"\"\n\n    class DataModule(pl.LightningDataModule):\n        def __init__(self, classifier_instance):\n            super().__init__()\n            self.hparams = classifier_instance.hparams\n            self.classifier = classifier_instance\n            # Label Encoder\n            self.label_encoder = LabelEncoder(\n                pd.read_csv(self.hparams.train_csv).label.astype(str).unique().tolist(),\n                reserved_labels=[],\n            )\n            self.label_encoder.unknown_index = None\n\n        def read_csv(self, path: str) -> list:\n            \"\"\"Reads a comma separated value file.\n\n            :param path: path to a csv file.\n\n            :return: List of records as dictionaries\n            \"\"\"\n            df = pd.read_csv(path)\n            df = df[[\"text\", \"label\"]]\n            df[\"text\"] = df[\"text\"].astype(str)\n            df[\"label\"] = df[\"label\"].astype(str)\n            return df.to_dict(\"records\")\n\n        def train_dataloader(self) -> DataLoader:\n            \"\"\"Function that loads the train set.\"\"\"\n            self._train_dataset = self.read_csv(self.hparams.train_csv)\n            return DataLoader(\n                dataset=self._train_dataset,\n                sampler=RandomSampler(self._train_dataset),\n                batch_size=self.hparams.batch_size,\n                collate_fn=self.classifier.prepare_sample,\n                num_workers=self.hparams.loader_workers,\n            )\n\n        def val_dataloader(self) -> DataLoader:\n            \"\"\"Function that loads the validation set.\"\"\"\n            self._dev_dataset = self.read_csv(self.hparams.dev_csv)\n            return DataLoader(\n                dataset=self._dev_dataset,\n                batch_size=self.hparams.batch_size,\n                collate_fn=self.classifier.prepare_sample,\n                num_workers=self.hparams.loader_workers,\n            )\n\n        def test_dataloader(self) -> DataLoader:\n            \"\"\"Function that loads the test set.\"\"\"\n            self._test_dataset = self.read_csv(self.hparams.test_csv)\n            return DataLoader(\n                dataset=self._test_dataset,\n                batch_size=self.hparams.batch_size,\n                collate_fn=self.classifier.prepare_sample,\n                num_workers=self.hparams.loader_workers,\n            )\n\n    def __init__(self, hparams: Namespace) -> None:\n        super(Classifier, self).__init__()\n        self.hparams = hparams\n        self.batch_size = hparams.batch_size\n\n        # Build Data module\n        self.data = self.DataModule(self)\n\n        # build model\n        self.__build_model()\n\n        # Loss criterion initialization.\n        self.__build_loss()\n\n        if hparams.nr_frozen_epochs > 0:\n            self.freeze_encoder()\n        else:\n            self._frozen = False\n        self.nr_frozen_epochs = hparams.nr_frozen_epochs\n\n    def __build_model(self) -> None:\n        \"\"\"Init BERT model + tokenizer + classification head.\"\"\"\n        self.bert = AutoModel.from_pretrained(\n            self.hparams.encoder_model, output_hidden_states=True\n        )\n\n        # set the number of features our encoder model will return...\n        self.encoder_features = self.bert.config.hidden_size\n\n        # Tokenizer\n        self.tokenizer = Tokenizer(self.hparams.encoder_model)\n\n        # Classification head\n        self.classification_head = nn.Sequential(\n            nn.Linear(self.encoder_features, self.encoder_features * 2),\n            nn.Tanh(),\n            nn.Linear(self.encoder_features * 2, self.encoder_features),\n            nn.Tanh(),\n            nn.Linear(self.encoder_features, self.data.label_encoder.vocab_size),\n        )\n\n    def __build_loss(self):\n        \"\"\"Initializes the loss function/s.\"\"\"\n        self._loss = nn.CrossEntropyLoss()\n\n    def unfreeze_encoder(self) -> None:\n        \"\"\"un-freezes the encoder layer.\"\"\"\n        if self._frozen:\n            log.info(f\"\\n-- Encoder model fine-tuning\")\n            for param in self.bert.parameters():\n                param.requires_grad = True\n            self._frozen = False\n\n    def freeze_encoder(self) -> None:\n        \"\"\"freezes the encoder layer.\"\"\"\n        for param in self.bert.parameters():\n            param.requires_grad = False\n        self._frozen = True\n\n    def predict(self, sample: dict) -> dict:\n        \"\"\"Predict function.\n        :param sample: dictionary with the text we want to classify.\n\n        Returns:\n            Dictionary with the input text and the predicted label.\n        \"\"\"\n        if self.training:\n            self.eval()\n\n        with torch.no_grad():\n            model_input, _ = self.prepare_sample([sample], prepare_target=False)\n            model_out = self.forward(**model_input)\n            logits = model_out[\"logits\"].numpy()\n            predicted_labels = [\n                self.data.label_encoder.index_to_token[prediction]\n                for prediction in np.argmax(logits, axis=1)\n            ]\n            sample[\"predicted_label\"] = predicted_labels[0]\n\n        return sample\n\n    def forward(self, tokens, lengths):\n        \"\"\"Usual pytorch forward function.\n        :param tokens: text sequences [batch_size x src_seq_len]\n        :param lengths: source lengths [batch_size]\n\n        Returns:\n            Dictionary with model outputs (e.g: logits)\n        \"\"\"\n        tokens = tokens[:, : lengths.max()]\n        # When using just one GPU this should not change behavior\n        # but when splitting batches across GPU the tokens have padding\n        # from the entire original batch\n        mask = lengths_to_mask(lengths, device=tokens.device)\n\n        # Run BERT model.\n        word_embeddings = self.bert(tokens, mask)[0]\n        \n        # Average Pooling\n        word_embeddings = mask_fill(\n            0.0, tokens, word_embeddings, self.tokenizer.padding_index\n        )\n        sentemb = torch.sum(word_embeddings, 1)\n        sum_mask = mask.unsqueeze(-1).expand(word_embeddings.size()).float().sum(1)\n        sentemb = sentemb / sum_mask\n        \n        return {\"logits\": self.classification_head(sentemb)}\n\n    def loss(self, predictions: dict, targets: dict) -> torch.tensor:\n        \"\"\"\n        Computes Loss value according to a loss function.\n        :param predictions: model specific output. Must contain a key 'logits' with\n            a tensor [batch_size x 1] with model predictions\n        :param labels: Label values [batch_size]\n\n        Returns:\n            torch.tensor with loss value.\n        \"\"\"\n        return self._loss(predictions[\"logits\"], targets[\"labels\"])\n\n    def prepare_sample(self, sample: list, prepare_target: bool = True) -> (dict, dict):\n        \"\"\"\n        Function that prepares a sample to input the model.\n        :param sample: list of dictionaries.\n\n        Returns:\n            - dictionary with the expected model inputs.\n            - dictionary with the expected target labels.\n        \"\"\"\n        sample = collate_tensors(sample)\n        tokens, lengths = self.tokenizer.batch_encode(sample[\"text\"])\n\n        inputs = {\"tokens\": tokens, \"lengths\": lengths}\n\n        if not prepare_target:\n            return inputs, {}\n\n        # Prepare target:\n        try:\n            targets = {\"labels\": self.data.label_encoder.batch_encode(sample[\"label\"])}\n            return inputs, targets\n        except RuntimeError:\n            raise Exception(\"Label encoder found an unknown label.\")\n\n    def training_step(self, batch: tuple, batch_nb: int, *args, **kwargs) -> dict:\n        \"\"\"\n        Runs one training step. This usually consists in the forward function followed\n            by the loss function.\n\n        :param batch: The output of your dataloader.\n        :param batch_nb: Integer displaying which batch this is\n\n        Returns:\n            - dictionary containing the loss and the metrics to be added to the lightning logger.\n        \"\"\"\n        inputs, targets = batch\n        model_out = self.forward(**inputs)\n        loss_val = self.loss(model_out, targets)\n\n        # in DP mode (default) make sure if result is scalar, there's another dim in the beginning\n        if self.trainer.use_dp or self.trainer.use_ddp2:\n            loss_val = loss_val.unsqueeze(0)\n\n        output = OrderedDict({\"loss\": loss_val})\n        # can also return just a scalar instead of a dict (return loss_val)\n        return output\n\n    def validation_step(self, batch: tuple, batch_nb: int, *args, **kwargs) -> dict:\n        \"\"\"Similar to the training step but with the model in eval mode.\n\n        Returns:\n            - dictionary passed to the validation_end function.\n        \"\"\"\n        inputs, targets = batch\n        model_out = self.forward(**inputs)\n        loss_val = self.loss(model_out, targets)\n\n        y = targets[\"labels\"]\n        y_hat = model_out[\"logits\"]\n\n        # acc\n        labels_hat = torch.argmax(y_hat, dim=1)\n        val_acc = torch.sum(y == labels_hat).item() / (len(y) * 1.0)\n        val_acc = torch.tensor(val_acc)\n\n        if self.on_gpu:\n            val_acc = val_acc.cuda(loss_val.device.index)\n\n        # in DP mode (default) make sure if result is scalar, there's another dim in the beginning\n        if self.trainer.use_dp or self.trainer.use_ddp2:\n            loss_val = loss_val.unsqueeze(0)\n            val_acc = val_acc.unsqueeze(0)\n\n        output = OrderedDict(\n            {\n                \"val_loss\": loss_val,\n                \"val_acc\": val_acc,\n            }\n        )\n\n        # can also return just a scalar instead of a dict (return loss_val)\n        return output\n\n    def validation_end(self, outputs: list) -> dict:\n        \"\"\"Function that takes as input a list of dictionaries returned by the validation_step\n        function and measures the model performance accross the entire validation set.\n\n        Returns:\n            - Dictionary with metrics to be added to the lightning logger.\n        \"\"\"\n        val_loss_mean = 0\n        val_acc_mean = 0\n        for output in outputs:\n            val_loss = output[\"val_loss\"]\n\n            # reduce manually when using dp\n            if self.trainer.use_dp or self.trainer.use_ddp2:\n                val_loss = torch.mean(val_loss)\n            val_loss_mean += val_loss\n\n            # reduce manually when using dp\n            val_acc = output[\"val_acc\"]\n            if self.trainer.use_dp or self.trainer.use_ddp2:\n                val_acc = torch.mean(val_acc)\n\n            val_acc_mean += val_acc\n\n        val_loss_mean /= len(outputs)\n        val_acc_mean /= len(outputs)\n        tqdm_dict = {\"val_loss\": val_loss_mean, \"val_acc\": val_acc_mean}\n        result = {\n            \"progress_bar\": tqdm_dict,\n            \"log\": tqdm_dict,\n            \"val_loss\": val_loss_mean,\n        }\n        return result\n\n    def configure_optimizers(self):\n        \"\"\"Sets different Learning rates for different parameter groups.\"\"\"\n        parameters = [\n            {\"params\": self.classification_head.parameters()},\n            {\n                \"params\": self.bert.parameters(),\n                \"lr\": self.hparams.encoder_learning_rate,\n            },\n        ]\n        optimizer = optim.Adam(parameters, lr=self.hparams.learning_rate)\n        return [optimizer], []\n\n    def on_epoch_end(self):\n        \"\"\"Pytorch lightning hook\"\"\"\n        if self.current_epoch + 1 >= self.nr_frozen_epochs:\n            self.unfreeze_encoder()\n\n    @classmethod\n    def add_model_specific_args(cls, parser: ArgumentParser) -> ArgumentParser:\n        \"\"\"Parser for Estimator specific arguments/hyperparameters.\n        :param parser: argparse.ArgumentParser\n\n        Returns:\n            - updated parser\n        \"\"\"\n        parser.add_argument(\n            \"--encoder_model\",\n            default=\"bert-base-uncased\",\n            type=str,\n            help=\"Encoder model to be used.\",\n        )\n        parser.add_argument(\n            \"--encoder_learning_rate\",\n            default=1e-05,\n            type=float,\n            help=\"Encoder specific learning rate.\",\n        )\n        parser.add_argument(\n            \"--learning_rate\",\n            default=3e-05,\n            type=float,\n            help=\"Classification head learning rate.\",\n        )\n        parser.add_argument(\n            \"--nr_frozen_epochs\",\n            default=1,\n            type=int,\n            help=\"Number of epochs we want to keep the encoder model frozen.\",\n        )\n        parser.add_argument(\n            \"--train_csv\",\n            default=\"data/imdb_reviews_train.csv\",\n            type=str,\n            help=\"Path to the file containing the train data.\",\n        )\n        parser.add_argument(\n            \"--dev_csv\",\n            default=\"data/imdb_reviews_test.csv\",\n            type=str,\n            help=\"Path to the file containing the dev data.\",\n        )\n        parser.add_argument(\n            \"--test_csv\",\n            default=\"data/imdb_reviews_test.csv\",\n            type=str,\n            help=\"Path to the file containing the dev data.\",\n        )\n        parser.add_argument(\n            \"--loader_workers\",\n            default=8,\n            type=int,\n            help=\"How many subprocesses to use for data loading. 0 means that \\\n                the data will be loaded in the main process.\",\n        )\n        return parser\n"
  },
  {
    "path": "data/MP2_2022_dev.csv",
    "content": "text,label\nWorks shockingly well,=Excellent=\nDifficulty staying in,=VeryGood=\nFavorite item,=Excellent=\nThese Roller Are NOT Magnetic,=Poor=\nNothing wrong with the product...but not what I was looking for,=Unsatisfactory=\nDo these actually work?,=Good=\nNothing great,=Good=\n\"Soft, touchable feet\",=Excellent=\nTerrible value,=Good=\nA Good Kit.,=Good=\nGreat but don't go overboard with usage,=VeryGood=\nJust Okay - No Noticeable Results,=Unsatisfactory=\nNeutrogena T-Gel Shampoo,=Excellent=\nA Real Keeper!,=Excellent=\nBetter for Fine Hair,=Good=\nIt's alright,=Good=\nTotal Waste of Time,=Poor=\nZThis was a big mistake as well,=Poor=\nFor older Woman,=Good=\nOrange,=Poor=\nLove this color!,=Excellent=\nEffective! My lips look and feel much better,=Excellent=\nOK....but expected better,=Good=\nI like it,=VeryGood=\nPerfect,=Excellent=\nI want to love this...,=Good=\nGreat buy1,=Excellent=\nI would use it again,=Good=\nNot impressed,=Unsatisfactory=\nNice Cream.,=VeryGood=\n\"A necessity for everyone, a classic.\",=Excellent=\nThe BEST Sweatband,=VeryGood=\nMust-have for sensitive skin,=Excellent=\nI love this lotion,=Excellent=\n\"Good color, strong smell\",=VeryGood=\nExcellent choice for very dry skin,=Excellent=\nNot pigmented enough,=Poor=\nFeatures include a massive mess and a more-than-minor burning sensation.,=Poor=\n\"OK base coat, but you can find a better top coat.\",=Good=\nno healer,=Poor=\nGREAT makeup remover wipes,=Excellent=\nMy favorite cologne,=Excellent=\n\"Good dryer for African-American, natural hair\",=VeryGood=\nNot impressed,=Unsatisfactory=\nUse a lot,=VeryGood=\nFacial Scrub,=Good=\nDidn't work for me,=Poor=\nAbsorbent and larger and thicker than expected,=Excellent=\nDisappointing.,=Unsatisfactory=\nUse them all the time,=Excellent=\nNot a fan,=Poor=\nWorst mineral veil ever,=Poor=\nDoes the job,=VeryGood=\nGreat Stuff,=Excellent=\n\"Very well absorbent by the skin, no smell\",=Excellent=\nPackaging...,=Good=\nExcellent,=Excellent=\nscent is okay but kind of artificial smelling.,=VeryGood=\nDoes the job,=VeryGood=\nI like it,=VeryGood=\nMakes my eyes burn,=Good=\nGreat brush and I have only used Mason Pearson brushes until now!,=Excellent=\nNo change,=Poor=\nIt's OK.,=Good=\nLove this,=Excellent=\n\"Sorry Olay, nay!\",=Good=\n\"Creates 80s kinks, not waves.\",=Poor=\nGood !,=VeryGood=\nHORRIBLE!,=Poor=\nit still kicking,=Excellent=\nDon't buy,=Poor=\nOk,=Good=\nFantastic product that does what it says it will do!,=Excellent=\nHATE THIS,=Poor=\nA beauty routine staple!,=Excellent=\nDisappointing,=Unsatisfactory=\nTerrible on sensitive/dry skin!,=Poor=\n\"Cheap, but they work.  Probably not suitable for thin or fine hair\",=Good=\ndoesn't seem to be working on me,=Good=\n\"Thick, but moisturizing\",=VeryGood=\nIt Clumps rather than Shatters,=Poor=\nLeft me limp...,=Unsatisfactory=\nJunk,=Poor=\nBeware if you have sensitive skin!,=Unsatisfactory=\nSent it back right away,=Poor=\nsucked,=Poor=\n\"This mascara has it all - clumps, strings, goo, smudges and more\",=Poor=\nIt's okay,=Good=\nNot what I thought.,=Good=\nlove the rose smell,=VeryGood=\nWhat a joke,=Poor=\nGreat Humectant.,=Good=\nNot for my hair,=Unsatisfactory=\nTickle My France-y,=Poor=\nGreat product for natural hair,=Excellent=\n\"This thing is heavy, and the handle hurts my hand :(\",=Unsatisfactory=\nomg finally help 4 eye areas!,=Excellent=\nVery Expensive,=Good=\nThe smell!,=Unsatisfactory=\n\"Very drying, but great!!\",=VeryGood=\nHuge disappointment,=Unsatisfactory=\nIt's not what it's supposed to look like,=Good=\nblonde,=Good=\nCurrently wearing,=Excellent=\nOver-rated.,=Poor=\nWish it was more red,=Good=\nDepends on your priorities,=Good=\nthe best,=Excellent=\namazing product for dry wrinkled mid 40 and up skin,=Excellent=\nNo noticible changes yet.....,=VeryGood=\nNo complaints,=Good=\nMade my under eyes dry and flaky,=Poor=\nPrice is waaaaay too high,=VeryGood=\nThick to apply,=Good=\nWill continue to use this....,=Good=\nnot what I thought it was going to be!,=Poor=\n\"Nothing outstanding or remarkable, but it gets the job done\",=VeryGood=\nIt Stings on Skin when Applied!! Does not Stay very Good.,=Unsatisfactory=\nPretty good,=Good=\nWaste of my Money,=Poor=\nThe sweet smell of papaya,=Good=\nDoes not smell the same.,=Poor=\nOne Of The Worst Rashes I've Ever Had,=Poor=\n\"DML Daily Facial Moisturizer, SPF 25 - 1.5 oz\",=Good=\n\"Tingles, Burns, Hurts!\",=Poor=\nStrong Goat Droppings Smell :-(,=Unsatisfactory=\nAlready a fan,=Excellent=\n\"Very Loud \\Meh\\\"\"\"\"\",=Good=\n\"Good, but not strong enough\",=VeryGood=\nNot for Sensitive Skins,=Unsatisfactory=\nJust okay....,=Good=\nHard for the spout to stay open,=Poor=\nA Facial in a Pad,=VeryGood=\nNot for sensitive skin,=Unsatisfactory=\nNot Good for Sensitive Skin. Say NO. Very Cheap.,=Poor=\nBetter than the brush that came with the Clarisonic,=Good=\nSurprisingly wonderful,=Excellent=\nIt's okay,=Good=\nIt removes all,=Excellent=\nDidn't work for me,=Unsatisfactory=\nmakes my skin feel so clean,=Excellent=\n\"Good sunblock, but not as a daily moisturizer\",=Unsatisfactory=\nTHIS BLACK JEWEL DOES THE JOB!!!!!,=Excellent=\nVery good product,=Excellent=\nGreat dryer,=VeryGood=\nHate it.,=Poor=\nFogless mirror guaranteed,=Poor=\nNot worth the price...,=Good=\nfine mist sdpray bottle,=VeryGood=\n\"doesnt last, and i could barely notice it was on my lips.\",=Unsatisfactory=\nBest Cuticle Oil on the Market,=Excellent=\nPoor quality control!!!,=Poor=\nvery oily,=Unsatisfactory=\nughhhh,=Poor=\nBEST TONER EVER,=Excellent=\nWorks well as a cleanser,=VeryGood=\nThis stuff works great but does not last long,=Good=\nExcellent product,=Excellent=\nOk but Smell is Strong in This Product,=Good=\nHorribly over-rated product,=Poor=\nThey keep sliding off.,=Good=\nCurly hair styler,=VeryGood=\nterrible photo,=VeryGood=\nClassit,=Good=\nGreat for scars,=Excellent=\nJust what I was looking for!,=Excellent=\nI wanted 30 spf with zinc  - it's kind of oily,=Good=\nLight and effective,=Excellent=\nPalmers Night Cream,=Unsatisfactory=\nVERY thorough clarifying shampoo,=VeryGood=\nBrittle Nails Beware,=Unsatisfactory=\n\"Thayers is great, but alcohol is not\",=Good=\n\"Holy Moly, Batman, Not Gluten-Free\",=Good=\nWorks quicker than murad,=Excellent=\n\"Great transfer, but full nail images are way too small.\",=Unsatisfactory=\nThis is horrible!!!!,=Unsatisfactory=\ngreat product but doesn't hold enough,=Good=\nI use it with my M.A.C.,=Excellent=\nEhh,=Poor=\none of the best,=VeryGood=\nbetter than I expected,=Excellent=\nGreat sunscreen,=VeryGood=\nMeh..,=Good=\nNot great,=Poor=\nsticky,=Good=\nMIGHT work... But it peels HORRIBLY!,=Poor=\nIt's just a beautiful bottle.,=Good=\nthe worst,=Poor=\nAwful Odor,=Poor=\nI've used better.,=Good=\nAwesome,=Excellent=\ngreat anti-aging product!,=Excellent=\nI feel the importance of a good makeup tool,=Unsatisfactory=\nNot so Rapid results,=Unsatisfactory=\nits okay,=Good=\nDelivery,=Poor=\nGood stuff,=VeryGood=\nJust Ok,=Good=\nNot really for me,=Good=\nstrong fragrance,=Good=\nHEAVY!,=Good=\nGreat product.,=Excellent=\nDidn't Work For Me,=Unsatisfactory=\nNot Going Back to My Old Hair Dryers!,=VeryGood=\nGreat daytime moisturizer,=VeryGood=\nInteresting,=Unsatisfactory=\nGreat product: Cleared my skin,=Excellent=\nSmarter Than the Makeup,=Good=\nPainfully hard bristles,=Poor=\n\"Decent and affordable, but...\",=Good=\nVery odd smell...,=Poor=\ngreat skin oil,=VeryGood=\n\"Natural is always the best, results are positive\",=VeryGood=\n\"Good hair dryer, but not for me.\",=Good=\nDidn't really help with wrinkles....,=Good=\nBargain set of 6 for classic sporty shower smell,=VeryGood=\n\"Great for \\dry brushing\\\"\" your skin\"\"\",=VeryGood=\nNice not oily,=Unsatisfactory=\nE oil,=Excellent=\nPrice?!,=Unsatisfactory=\nI like it,=VeryGood=\nGood self tan product.,=VeryGood=\nNice Product But Has It's Pros and Cons,=Good=\n\"Stays on as promised, but...\",=Good=\nNot what I expected..,=Poor=\nPretty Disappointing,=Unsatisfactory=\nGreat for the body,=Good=\nPerfect for work,=Excellent=\n\"good, if you're not really dry\",=Good=\nDoes anyone make a similar product without a scent?,=Unsatisfactory=\nBetter than most pedicures,=VeryGood=\nSpeeds up hair drying,=VeryGood=\n\"Fun, feels good, but kind of disappointing.\",=Good=\nRegenerist fluid worked better.,=Good=\n\"strong scent, but good moisturizing\",=Good=\nI LOVE THIS,=Excellent=\nTerrible!,=Poor=\nHelpful!,=VeryGood=\nGood Stuff!,=VeryGood=\nDoesn't have the greatest longevity,=VeryGood=\nGood for self tanning beginners.,=Good=\nNo change yet:(,=Poor=\nI Like it,=VeryGood=\nSt Ives Is the Best!!,=Excellent=\nNot for me,=Unsatisfactory=\ndry pads don't take my eye makup off!,=Good=\nBeen using for years,=Excellent=\nGreasy,=Poor=\nA must have for fine hair!,=Excellent=\nVery claming for the Nu Derm system,=Excellent=\nNot the best lipgloss a very cheap gloss,=Poor=\nmeh,=VeryGood=\nEhhh,=Good=\nHair Dryer,=Excellent=\nGOOD,=VeryGood=\nI finally have nails,=Excellent=\nThe worst stuff in existance....Seriously!,=Poor=\nArdell Lash Growth Accelerator,=Unsatisfactory=\nI love this color.,=Excellent=\n\"Love the product line, hate this product.\",=Poor=\nWhere the blush?,=Unsatisfactory=\nGreat sunblock/ too heavy for me.,=Good=\nbye bye blemish,=Excellent=\nBuyers Beware,=Poor=\ngreat for wigs,=Excellent=\nUseful all year round...but especially in the summer,=Excellent=\nWill dry your hair out,=Poor=\nGreat for dry skin,=Excellent=\nNice Set for the Price,=Excellent=\n\"DRY PADS, POOR RESULTS\",=Good=\nhonest review,=Unsatisfactory=\nDid nothing for me....,=Poor=\nThe WORST foundation I've ever used,=Poor=\ndoes not heat up,=Poor=\nNot my cup of tea.,=Unsatisfactory=\ngreat power,=VeryGood=\nstore123 is the worst,=Poor=\nSAVE YOUR MONEY,=Poor=\nDidnt see a difference,=Good=\nSo so,=Unsatisfactory=\nNot great for fine hair,=Unsatisfactory=\nAllergic reaction,=Unsatisfactory=\nGood product!,=VeryGood=\nLovely,=Excellent=\nEffective,=VeryGood=\nCan't really tell,=Good=\n\"Don't really see what's so \\Ultra\\\"\" about it...\"\"\",=Good=\nI LIKE IT,=VeryGood=\nlove,=Excellent=\n\"Simple, Great Brush\",=Excellent=\nNO MORE TANGLES - CLEAN - NO MORE OILY HAIR,=Excellent=\nWhat happened to the Cetaphil bar I used to know and love?,=Poor=\nCOLORFUL NEUTRAL PROTEIN FILLER 4 FL OZ,=Excellent=\n\"Smells nice, subtle glitter, lots of shine\",=VeryGood=\njust got !,=Excellent=\nNot sure about this,=Unsatisfactory=\nTHIS WAS A COUNTERFEIT!!,=Poor=\nGross,=Poor=\nhate this product,=Poor=\ndidn't work for me,=Poor=\nNot worth the money,=Unsatisfactory=\nDid not deliver expected results,=Unsatisfactory=\nuncomfortable to use,=Unsatisfactory=\nJust For Me Hair Milk Conditioner,=Good=\nSmells so good!!,=VeryGood=\nLooks like shit. On fake lashes,=Good=\nOverpriced for results,=Good=\nToo early to see results,=VeryGood=\nmade my hair melt!,=Poor=\nAtomizer stops working Scent doesn't last,=Good=\nspells good,=VeryGood=\nLotion,=Poor=\nThey are alright,=VeryGood=\nSlow but ok,=VeryGood=\nYuk...waste of money,=Poor=\nnyx mascard clumpy mess,=Unsatisfactory=\nlight,=Excellent=\nmy face feels very clean and looks shiny!!!,=Excellent=\nNew face wash,=Good=\nAnother great product I hope stays around forever,=Excellent=\nJust OK,=Good=\nMavala Scientifique Nail Hardener,=VeryGood=\nSo far so good,=VeryGood=\nStrips hair,=Poor=\nToo soft,=Poor=\nbest facial moisturizer on the market!,=Excellent=\nJust not for me,=Unsatisfactory=\nNICE AMBER !,=Excellent=\nSeem Not the same product,=Poor=\nIt does good to even out darkness,=Good=\nscent lasts all day long,=Poor=\n\"unnatural yellow color, also HUGE in size\",=Unsatisfactory=\nSevere allergic reaction/ anaphylaxis,=Poor=\n\"Hasn't \\Rapidly Reduced\\\"\" My Wrinkles\"\"\",=Unsatisfactory=\nGreat Product,=Excellent=\nPuffiness is gone.,=Excellent=\nGood cleansing sponge.,=Excellent=\neyes itched and definite smudging effect,=Unsatisfactory=\nI should have known ...,=Good=\nDidnt work for me,=Unsatisfactory=\n\"Oh me, oh my--Absolutely Amazing!\",=Excellent=\nGreat Source,=Excellent=\nIt works!,=VeryGood=\ngreat,=Excellent=\nThis i like alot,=VeryGood=\nNot so much,=Unsatisfactory=\nit doesn't work for me and it smells wired!,=Good=\nSeems to make little difference,=Good=\nQuality shampoo,=VeryGood=\nnever worked!!!,=Poor=\nnot a 5 star item but worksI,=Good=\nits ok if u absolutely cannot afford a Expensive hair iron,=Unsatisfactory=\nDoesn't do it for me,=Unsatisfactory=\nso helpfull,=Excellent=\nBiotin,=Good=\nNice comb,=Excellent=\nconfused,=Poor=\nNot Paraben Free.,=Poor=\nNot a big difference,=Good=\n\"Thus far, no miracle\",=Good=\nWaste money,=Poor=\ngreat product,=Excellent=\nWonderful,=Excellent=\nThrew it away!,=Poor=\nSticky and bad odor-,=Unsatisfactory=\nIt's alright.,=Unsatisfactory=\nNot actually Moisturizing...,=Poor=\nGreat Stuff!  Swear by It!,=Excellent=\n\"OK Powder, Bad Packaging and Brush!\",=Good=\nNot impressed!,=Poor=\nGreat details,=VeryGood=\nThey pretty much work.,=VeryGood=\nGreat Buy!!!,=VeryGood=\nDidn't stick for me,=Unsatisfactory=\ngood value,=VeryGood=\nOkey,=Unsatisfactory=\nI Love It!,=Excellent=\n\"sticky, sticky, sticky!!!!!\",=Unsatisfactory=\nCauses puffy eyes in the morning.,=Good=\nCure for dry skin patches,=VeryGood=\nReally like it,=Excellent=\nIt's a good one,=VeryGood=\nT3 IS TOPS FOR US,=VeryGood=\ngreat product,=VeryGood=\nPeppermint lotion,=Good=\nSmells like chemicals- awful scent and oily texture,=Poor=\neh,=Good=\nI don't see how this can be any better then scrubbing yourself,=Good=\nBest primer!,=VeryGood=\nSticky feeling!,=Unsatisfactory=\nBeautiful color (Dolce Vita) on fair skin...not as much staying power as expected,=VeryGood=\nDRYING,=Unsatisfactory=\nNot a fan,=Unsatisfactory=\n\"It's okay.... my Pretika oscillates, which makes it feel too abrasive on my non-sensitive skin\",=Good=\nNot as great,=Unsatisfactory=\nLike a child's skin..oooooh so soft and smooth.,=Excellent=\nLOVE IT!!!!,=Excellent=\n\"Yucky, yucky!!!\",=Poor=\n\"NOTHING \\GOODY\\\"\" ABOUT IT!\"\"\",=Poor=\nToo man-like for me,=Unsatisfactory=\nThis is the best,=Excellent=\nGood Product for the Eyes,=VeryGood=\nOkay,=Unsatisfactory=\nGreat shine and smell!!,=Unsatisfactory=\na good serum,=VeryGood=\nNice Cream,=Good=\nExcellent soap,=Excellent=\n\"good cream, good dispenser\",=VeryGood=\nNot wett enough,=Good=\nWhew! It stinks!,=Unsatisfactory=\n\"Dry, scratchy oddly woven wipes\",=Unsatisfactory=\nPhilosopy is the BEST,=Excellent=\nBreath Of Fresh Air,=VeryGood=\n\"Sticky, thick, but makes your skin soft!\",=Good=\nGreat stuff cheap!,=Excellent=\n\"Perfect for full body, even for sensitive users\",=Excellent=\nGreat scent!,=Excellent=\n\"Great, subtle scent\",=Excellent=\nUsed to love it but it feels a lot more silicon in it now,=VeryGood=\nJust better than average,=Good=\nYum!,=Excellent=\n\"Hands down, best neutral nail color\",=Excellent=\nNice scent....applied easily.,=VeryGood=\ndecent product but careful if skin is sensitive.,=Good=\nBought the brunette.  The color is kind of red-orange.,=Good=\nI did not see results,=Unsatisfactory=\nDONT KNOW HOW!! BUT IT IS REAL!!,=VeryGood=\nplease read this. you will be surprised as to why i gave it 4 stars,=VeryGood=\nBare Escentuals Full Coverage Kabuki Brush,=VeryGood=\nDoesn't cover a brown girl,=Good=\nNeeds accompaniments to be feasible,=Poor=\nBLUE JEANS for Men by Versace,=VeryGood=\ndoesn't seem to be working,=Poor=\nAverage product,=Good=\nLong Eyelashes,=Poor=\nNot that great,=Good=\nNice product,=Good=\nWarning,=Poor=\n\"Worked amazingly, then amazingly didn't\",=Unsatisfactory=\nTurned my hair purple!,=Poor=\n\"If I Could Give This Moisturizer NEGATIVE stars, I Would!\",=Poor=\nNot recommended for sensitive skin,=Poor=\nReview for eye cream,=VeryGood=\njade is the new black rocks!,=Excellent=\nDidn't see results,=Unsatisfactory=\nLight perfume of white flowers,=VeryGood=\nA little goes a long way!,=Excellent=\nSkin feels fresh!,=VeryGood=\nOrgasm on your mouth.,=Excellent=\nAn uncomfortable and non-working product,=Poor=\nWon't buy again,=Unsatisfactory=\nGood Product,=VeryGood=\nAddicted!,=Excellent=\nMoroccanoil,=Good=\nStinks...,=Unsatisfactory=\nIt's awesome...highly recommend!,=Excellent=\nNice,=Excellent=\njust start this gel,=Good=\nSmell goes away!,=Excellent=\nHARD TO PUT ON ESPECIALLY FOR BEGINNERS,=Poor=\n\"It works, sort of. But it's also kind of scary.\",=Good=\n\"Eh, I can't tell if it's working\",=Unsatisfactory=\nCosts too much no matter how good it is.,=Poor=\nBe Careful,=VeryGood=\nCANCER CAUSING PARABENS,=Poor=\n\"REVIEWS at 3, 7, & 9 weeks\",=Poor=\nok but....,=Good=\nSuccessful Peel for a beginner,=VeryGood=\nDried out my hair,=Unsatisfactory=\nnot really what i thought,=Good=\nNot really a fine mist.,=Unsatisfactory=\nNothing special,=Unsatisfactory=\nMy Only Bad Eucerin Product Review(causes breakouts),=Unsatisfactory=\nNo Changes Noted,=Poor=\nLight Eye Cream - Still Puffy,=Good=\nSticky lotion flakes off face,=Poor=\nFace Serum is OK,=Good=\nFive Stars,=Excellent=\nthere are better options,=Unsatisfactory=\nNot a fan,=Unsatisfactory=\nCashew nut allergy beware!!,=Poor=\nMuch better than what I was using.,=Excellent=\nDoesnt hydrate,=VeryGood=\nLove It,=VeryGood=\nOnly use a dab!,=VeryGood=\nweird immediate color,=Good=\nSoothes painful ears -- but not for sensitive noses!,=Good=\nGreat product,=Excellent=\nmeh its okay,=Unsatisfactory=\nShower Tangles No More!,=Excellent=\nThe Smell Is Awful!,=Poor=\nDidn't heat up,=Good=\nLove this mascara,=VeryGood=\nDmae fluid works!,=Excellent=\nMagic,=VeryGood=\nVivo Moisturng Day Cream,=Poor=\nSaved my scalp,=Excellent=\nBought it for others,=Good=\nFair & White exfolliating soap,=Unsatisfactory=\nFantastic hand cream,=Excellent=\nslightly small,=Good=\n\"Not what it used to be. Now the \\new coke\\\"\" version\"\"\",=Poor=\n\"Cheap,cheap, cheap. You Get What You Pay For. Say NO.\",=Poor=\nPrefer this to Eucerin...,=VeryGood=\nGreat product.,=Excellent=\n\"Immediate relief, but not complete\",=VeryGood=\nAcne treatment,=Good=\nMaybe for the winter or fall,=Unsatisfactory=\nBEST Moisturizer for Acne-Prone Skin,=Excellent=\nConcealer,=Poor=\nThe Scent that Brings Back Memories,=VeryGood=\nlove it,=Excellent=\nNot too thrilling.,=Unsatisfactory=\nLike it!,=Good=\nevaluation,=Unsatisfactory=\nUseless for Most,=Poor=\nMakes Hair Fall Out...  Buyer Beware!!!,=Poor=\nCan harm skin after using for a time,=Poor=\nSmells and feels great but dried my skin out,=Unsatisfactory=\nit's excellent!,=Excellent=\nBad quality,=Poor=\nDoesn't last & allergic reaction,=Poor=\nNo Way does this smell like a creamsicle...,=Good=\nBad smell,=Poor=\nYou'll forget you're wearing foundation,=VeryGood=\nIt Arrived!,=Poor=\ndissapointed,=Unsatisfactory=\n\"okay, but mine doesnt last\",=Unsatisfactory=\nFiller,=Unsatisfactory=\nNice smell,=VeryGood=\nit does the job,=Good=\nDid not work for me,=Unsatisfactory=\nNice reddish burgundy shimmer,=Excellent=\nworks well,=VeryGood=\nOne of my favs for a man,=Excellent=\nDecent but has a strong odor,=Good=\nThis product works.,=Excellent=\nGood,=VeryGood=\nwaist of my money,=Poor=\n\"huge, awkward for travel\",=Unsatisfactory=\nWorks well but......,=VeryGood=\nPerfect for eyes,=Excellent=\nFrownies work better than any cream I've used,=Excellent=\nNice moistureiser,=Good=\nNo lasting results,=Unsatisfactory=\nNOT FOR ME,=Good=\nWorks Wonders!,=Excellent=\nFeels incredibly drying!,=Unsatisfactory=\nTotal waste,=Poor=\nSoft bristles,=Good=\nJust ok.,=Good=\nGreat Toner,=Excellent=\nI have long lashes now only took three months,=Excellent=\nOverrated,=Unsatisfactory=\n\"Hair, and scalp healthier\",=Good=\nCaution to Contact Lens Wearers,=Poor=\nNot worth it to me,=Unsatisfactory=\nToo fragrant,=Unsatisfactory=\nJUST okay,=Good=\nEye shadow,=Good=\nGreat Waver/Crimper!,=VeryGood=\nThe Best Scent,=Excellent=\nPretty good,=VeryGood=\nNot sure,=Good=\n\"Does have good scrub not too soft, It's okay\",=Good=\nNot Bad,=VeryGood=\ngood,=Excellent=\nToo Much Lather,=Good=\nCool baby pink,=VeryGood=\nNot for me,=Poor=\nplease,=Poor=\nAbsolute Garbabe,=Poor=\nI'm comparing this to Sebastian hair spray,=Poor=\nLeaked,=Poor=\nDon't Waste Your Money,=Poor=\nVery impressed,=VeryGood=\nI don't see what the fuss is,=Good=\nConair Super Clips,=Good=\nNo bueno for me.,=Unsatisfactory=\ngreat religious experience for those collecting the money,=Poor=\nPerhaps Formula Has Changed?,=Poor=\nWell....,=Good=\nFlakes!,=Poor=\nAverage cleanser,=Good=\nDisappointing product from SH,=Unsatisfactory=\nNot As Quiet As Described.,=Good=\n\"Rather toxic treatment, nothing luxurious\",=Poor=\nLight and Effective!,=VeryGood=\nNot that great.,=Good=\nIt holds; but very sticky,=Unsatisfactory=\nNice and natural + smells good!,=Excellent=\nFavorite,=Excellent=\nGood moisturizing,=VeryGood=\nVery badly burned,=Poor=\nReally like this,=VeryGood=\nDissapointed,=Good=\nWorks if you have a certain type of skin / pore,=Good=\nStamp and Scrape,=VeryGood=\nGood Product,=Excellent=\nOnly Okay,=Good=\nOk if you don't have tea tree handy,=Good=\nso so,=Good=\nUnimpressive & smells AWFUL,=Unsatisfactory=\nONLY 1% H.A.,=Poor=\ntotally addicted!,=Excellent=\nWhat a let down!,=Poor=\nAbsolutely not meant for my hair,=Unsatisfactory=\nThis Garbage gave me bald spots (repost),=Poor=\nSave your face and wallet!,=VeryGood=\nVery Strong vamilla smell,=Good=\ndoesnt work,=Unsatisfactory=\nThought I could use it for foundation but it's more a finishing powder,=Unsatisfactory=\nNot bad,=VeryGood=\nDon't waste your money this does not do anything to hair ...,=Poor=\nNot for oily hair.,=Unsatisfactory=\nGreat Experience for Your Cuticles!,=Excellent=\nThe smell - holy moly!,=Unsatisfactory=\nbest thing about this perfume is the bottle,=VeryGood=\nWorks Well But I Prefer Spornette,=Excellent=\n\"Creamy, smooth and citrus-flavored night cream!\",=Good=\nNot sulfate free,=Unsatisfactory=\nA little goes a long way,=VeryGood=\nJust ok,=Unsatisfactory=\n\"Good for length, not so much for thickness\",=Good=\nNot very good - spend a little extra for something better,=Unsatisfactory=\n\"Good product, but overpriced - seller deceptive\",=Unsatisfactory=\nThe chunky pencil works better,=Unsatisfactory=\ngreat for sensitive skin and noses!,=Excellent=\nDoesn't affect color much.,=Good=\nEasy storage,=Excellent=\nLooks Can Be Deceiving,=Poor=\nEhhhh,=Unsatisfactory=\nA TRUE list of ingredients!,=Poor=\nWas not pleased with this product,=Unsatisfactory=\nFlawed Design,=Poor=\nDoesn't stick,=Unsatisfactory=\nMy favorite lip gloss,=Excellent=\n\"Generally effective, but has several drawbacks\",=Unsatisfactory=\nNot a fan,=Poor=\n\"Some softness, but not much else.\",=Good=\nMoving along...,=Unsatisfactory=\nOld product,=Poor=\nGoes a long way,=Good=\nOkay,=Good=\ngood,=VeryGood=\nAllergic Reaction,=Good=\nAn ok product,=Good=\nvery light,=Unsatisfactory=\n\"A good fragrance, but nothing extraordinary...\",=VeryGood=\nNot so good,=Unsatisfactory=\nKinda works...?,=Poor=\ngreat for acne prone skin!,=Excellent=\nfabulous mac at a great price,=Excellent=\nMostly air.,=Poor=\nnot happy,=Unsatisfactory=\nSTINKY AWFUL,=Poor=\na decent gloss,=Good=\nnot that great,=Unsatisfactory=\nGood Cleanser,=VeryGood=\nworks great.. but i added a trick to help,=VeryGood=\nHATE IT!!,=Poor=\nNice but wish it did more,=Good=\nGreat acne cleanser - WONDERFUL with Clarisonic,=Excellent=\nBeware!,=Unsatisfactory=\nSuggested by my dermatologist,=Excellent=\nNice travel set,=VeryGood=\nwish i could return it,=Poor=\nDeep lavender and lemon in a bright blue seaweed bath!,=Excellent=\nIt's ok I guess...,=Good=\nDry bronzer,=Good=\n\"Great product, too expensive and too small\",=Good=\nNot worth the money-,=Poor=\nVery Drying shampoo!!,=Poor=\nLooks sweet....for a day!,=Good=\nAwesome hand cream,=Excellent=\nWorst Breakout I Have Every Had!,=Poor=\nWhat Can I Say?,=Poor=\nVery good magnification,=VeryGood=\nbeautiful neutral pink,=Excellent=\nIts okay,=VeryGood=\nwish it was faster,=VeryGood=\nPure rose essence,=VeryGood=\nRefreshing.....,=Excellent=\ngreat color,=Excellent=\nNot very musk,=Good=\nNot worth the money!,=Unsatisfactory=\nDid not work!,=Poor=\nGreat for my shoulder length hair,=Excellent=\nMADDD!,=Poor=\nTake it or leave it,=Good=\nCan't Live Without!,=Excellent=\nPREMIER DEAD SEA LUXURIOUS ANTI-AGING NECK CREAM,=Good=\nflattering,=VeryGood=\nNectar and tawny are both wonderful,=Excellent=\nDon't Buy!!!,=Poor=\ndoesnt work,=Poor=\n\"Quick and easy, but a bit drying\",=VeryGood=\n\"Just \\OKAY\\\"\" on my hair\"\"\",=Good=\nIT WAS NOT GOOD FOR MY ALREADY DRY HAIR B/C...,=Unsatisfactory=\n\"Overpowering \\fragrance\\\"\"\"\"\",=Poor=\n\"Good idea, bad design\",=Good=\n\"well built-feels high quality, but not for me\",=Good=\nblegh,=Unsatisfactory=\nSmells wonderful - but might be a bit too strong,=Good=\nWorks great,=Excellent=\nI haven't used the Duo Water Proof  Eyelash Adhesive Dark Tone -o.25,=VeryGood=\nPretty decent,=VeryGood=\nOkay,=Good=\nOkay product!,=Good=\nnot good,=Poor=\nImmerse in the Big Blue,=Excellent=\nAwesome clarifying product,=Excellent=\nNothing special--but it makes bubbles...,=Good=\nummmm,=Unsatisfactory=\nI received only half bottle of it!!!!!!!!,=Poor=\nlike the product,=Good=\nHighest Carcinogen Titanium Sunscreen ...,=Poor=\nContains Parabens,=Poor=\nIt's a 10 but...,=VeryGood=\nBubble bath nice light color,=VeryGood=\n\"Tried it once, sent it back\",=Poor=\nGet what you pay for,=Unsatisfactory=\nWaste of money- so dissapointed.,=Poor=\nthe cutest!,=Excellent=\nWant your skin to look and feel Amazing?,=Excellent=\nJust average--not a miracle worker.,=Unsatisfactory=\ntoo harsh on sensitive skin.,=Unsatisfactory=\nSensitive Skin Users Be Cautious!,=Good=\nNature's cure two-part acne treatment,=Poor=\nGreat.,=Excellent=\nVery little scent straight from the bottle,=Unsatisfactory=\nGood but expensive,=VeryGood=\nNot so hot...,=Unsatisfactory=\nCheap copy!  Update!,=Poor=\nDoesn't live up to its promises,=Poor=\nDon't like it,=Unsatisfactory=\nGood night cream.,=Excellent=\nDon't waste your money!,=Poor=\nmaybelline expert wear eyeshadow,=Good=\nWasn't impressed,=Poor=\nLove,=Excellent=\n\"Caused Acnegeddon on my scalp, face, neck; not 100% oil\",=Poor=\nPhilosophy when hope is not enough,=VeryGood=\nFree and Clear Cleanser,=Excellent=\nLanza Healing Trauma Treatment,=Unsatisfactory=\nNo so goot at straightening but good at other features!,=Poor=\nLeaves  my hair shinny,=VeryGood=\nbeautiful pink,=Excellent=\nDoesn't cure the circles and stretches the skin,=Unsatisfactory=\nhorrible!,=Poor=\nDisapointed,=Poor=\nI can NOT use it alone - itches terribly!,=Poor=\nMade My Hair Worse,=Poor=\n5 Star Conditioner!! CG Friendly!!!,=Excellent=\nNot the Original Formula,=Good=\nUnpleasant tingling,=Poor=\ngood one,=VeryGood=\n\"Can't say anything about jojoba in it, but it's great as is.\",=Excellent=\nYour Basic Soap,=Unsatisfactory=\nVery disappointed- strips hair color!,=Unsatisfactory=\nCame cracked!,=Poor=\ngood stuff,=Excellent=\nVery strong,=Good=\nHmm... I'd stick to lipstick.,=VeryGood=\n\"Love its affects, just not the smell too much\",=VeryGood=\njust a waste of money,=Poor=\nA less expensive alternative,=Unsatisfactory=\nDelivers on Promises,=Excellent=\nHappy overall.,=VeryGood=\nnothing compared to the salux,=Poor=\nDoes not last,=Poor=\nIt's a headband,=VeryGood=\nThe Creme De La Creme of Creams!,=Excellent=\nNot great,=Unsatisfactory=\nNot good for acne-prone skin.,=VeryGood=\nTranslucent Matte that glow ?,=Poor=\n\"LOVED IT, I dyed my little sisters hair\",=Excellent=\nMakeup finishing spray,=Unsatisfactory=\nsealing serum,=Good=\nit is ok,=Good=\nmakes my skin itchy with rash,=Poor=\nToo sticky for me but definitely protects,=Good=\nNot really,=Unsatisfactory=\nExactly What I've Been Looking For!,=Excellent=\neh...,=Good=\nGreat Dryer,=VeryGood=\nI love Essie but I don't love this one...,=Unsatisfactory=\nnuetral review,=Good=\nOMG...Ojon....The Best Ever,=Excellent=\nLove it,=VeryGood=\nI feel so dainty and lovely when I use this,=Excellent=\nnot so soft,=Unsatisfactory=\nSave your money,=Poor=\nWaste of money,=Unsatisfactory=\nGreen Tea By Elizabeth Arden For Women. Eau De Parfum Spray 3.3 Ounces,=VeryGood=\nIts Worth Your Money!!!!!!,=Excellent=\nBlah...,=Poor=\nNot that bad...,=VeryGood=\nI don't think I've ever before loved a brush...,=Excellent=\nColor fast but leaves hair feeling dry,=Unsatisfactory=\nbest face lotion ever,=Excellent=\nNot sure what  I'm getting from this .,=Unsatisfactory=\nNot for me!,=Unsatisfactory=\nDO NOT. I REPEAT. DO NOT. BUY THIS,=Poor=\nOkay,=Good=\n2 WORDS----IT  WORKS !!!,=Excellent=\nBarely any scent,=Good=\nMotions At Home Deep Penetrating Treatment Conditioner,=VeryGood=\ndont love it,=Unsatisfactory=\nI'M A TRUE BLUE CONVERT!,=Excellent=\nterrible bb cream,=Poor=\nLast short!,=Unsatisfactory=\nDoes the job,=VeryGood=\nOnly foundation I will ever use,=Excellent=\nSo far so good,=VeryGood=\n\"Okay product, but nothing magical - same as conditioner\",=Good=\nSmells Like Febreze !!!,=Unsatisfactory=\nPain With No Gain,=Unsatisfactory=\nReally great,=Excellent=\nUse lightly in the Winter ...,=Good=\n\"Product Works, the Scent Doesn't\",=VeryGood=\n4 best Tool Shapeners Compared,=Good=\nIndifferent,=Good=\nItchy welts broke out on the back of my neck!,=Unsatisfactory=\nMakes my hair flat,=Unsatisfactory=\npackaged poorly,=Good=\nNot really sure that it's working,=Good=\nReally Helps,=VeryGood=\nNot Straight,=Unsatisfactory=\nITEM ARRIVED DAMAGED,=Poor=\nYummy..,=Excellent=\nGood little bottle,=VeryGood=\nGreat product but not taken care of,=VeryGood=\nIt's good,=VeryGood=\nyup,=Good=\nJust what I wanted,=Excellent=\nNeutrogena T/Gel Shampoo,=VeryGood=\nDoesn't Work.,=Poor=\nNot happy. Negative results.,=Poor=\nNearly Effortless Styling,=VeryGood=\nPerfect Pale pink,=Excellent=\nNo thrilled - but perfect fro travel,=Good=\nGreat cologne,=VeryGood=\nAlmond Castile Soap,=Good=\nShedding the 1st time used,=Unsatisfactory=\nbareMinerals - Returned,=Unsatisfactory=\nMeh.,=Good=\nWorthless,=Poor=\n\"Takes a while to heat up, but good\",=VeryGood=\nblack soap,=Good=\nMeh - Changed my mind,=Unsatisfactory=\n\"Great curl refresher, but you must use it correctly!\",=VeryGood=\n\"Awful, unless you love doing laundry\",=Poor=\nOk for some.,=Good=\n\"Whew, this stuff has a kick!\",=Unsatisfactory=\nPureology Anit-Fade Complex Hydrate Shampoo,=Excellent=\nBlah,=Unsatisfactory=\nIts cheap,=Unsatisfactory=\n\"So far, so good!\",=VeryGood=\nNo Noticeable Difference,=Unsatisfactory=\ngood product,=VeryGood=\nMeh. Chalky,=Unsatisfactory=\nAN EYELINER THAT CRACKS THEN FLAKES,=Poor=\nNo pigmentation!!!,=Unsatisfactory=\ngreat,=VeryGood=\nServes its purpose but could be better,=Good=\nNothing special,=Poor=\nHorrible,=Poor=\nThese are great for practicing with,=Unsatisfactory=\nSmells strange and My Skin disliked this!,=Poor=\nDon't Waste Your Money,=Poor=\nspeeds up bad acne fading,=Excellent=\nGGGRRRR!!!!!!!!,=Poor=\nZoya fav!,=Excellent=\nThe product is not bad.,=Good=\n\"Hair Ripper, Hair Breaker...\",=Poor=\n\"Well, I'm unimpressed with these\",=Unsatisfactory=\n\"So far, so good\",=VeryGood=\nWhole different set than shown in pictures,=Unsatisfactory=\nThe greatest Product ever,=Excellent=\n\"I mean, it's not super-durable or anything\",=VeryGood=\nBroke after 2 uses,=Poor=\n\"NASTY, NASTY, NASTY.\",=Poor=\nNot What I Thought,=Unsatisfactory=\nSmells funny...,=Unsatisfactory=\nJust buy it!,=VeryGood=\nlove it,=Excellent=\nDidn't last :(,=Unsatisfactory=\nJust doesn't curl...,=Poor=\nBUYER BEWARE,=Poor=\nMoisturizing Cream Did not Impress Me,=Unsatisfactory=\nIs this product tested on animals?,=Good=\n\"Be warned, this sunblock IS NOT water proof! ...\",=Good=\nIt irks okay,=Good=\nThis could have been great,=Unsatisfactory=\nUgly & sheds,=Poor=\nGreat cleanser!,=Excellent=\n\"Sadly, not impressed\",=Unsatisfactory=\nExcellent,=Excellent=\nTHE SMELL YUCK!,=Good=\nHorrible flaking!,=Unsatisfactory=\nRather overpowering,=Unsatisfactory=\nNo results,=Unsatisfactory=\nHo-hum--nothing THAT different from what's already out there,=Good=\nWorks well.,=VeryGood=\nNot wide tooth,=Unsatisfactory=\nworst cologne...,=Poor=\nNot bad :),=VeryGood=\nGreat In A Pinch Easy To Use Fair Results,=VeryGood=\nEnjoy this product daily!,=Excellent=\nUpdate to my other review,=Unsatisfactory=\nStains too easily,=Unsatisfactory=\nTeeth Too Thick,=Unsatisfactory=\nNot really useful.,=Good=\nSilly Putty for your face,=Poor=\nDoes what it claims! I noticed difference the next day!,=Excellent=\n\"Seriously, eStores?\",=Poor=\nWorst piece of junk I ever bought; fell apart after using 3-4 x's,=Poor=\nhair stuff,=Poor=\nSome people do not care for the customer,=Poor=\nLove it so far,=Excellent=\nNot worth it,=Poor=\nThree Stars,=Good=\nI like it ... but don't love it..,=Good=\nOk- but clumps,=Good=\nNot so great,=Unsatisfactory=\nAwesome!,=Excellent=\nI love the way it works,=Excellent=\nNot too impressed...,=Good=\na pretty unit...,=Good=\n\"\\Eraser\\\"\" is a bit too potimistic of a word\"\"\",=Good=\nHate this primer,=Poor=\n\"Refining \\Mask\\\"\"\"\"\",=Good=\n\"Thick, crusty, impossible\",=Unsatisfactory=\nHORRIBLE- EACH CANE IS 2cm and really tiny. Smaller than my last finger. Smaller than an eraser.,=Poor=\nTutti Fruiti Tonga,=Excellent=\n\"Doesn't Sting, Smells Wonderful\",=Excellent=\nGreat face and all-over body cleanser,=Excellent=\nGreat soap and scent,=Excellent=\nJust a bit of advice!,=Excellent=\nITS COOL,=Good=\nI love NYX however this might be a fake?,=Unsatisfactory=\nWhat a complete ripoff,=Poor=\nExcellent compact hair dryer,=VeryGood=\nIt's 0kay.,=Good=\nThe Perfect Blowdryer For My Baby Fine Hair!,=Excellent=\nso/so,=Good=\nThick soft finish,=Unsatisfactory=\nGoood,=VeryGood=\ngarbage,=Poor=\nDaughter likes it!,=VeryGood=\n\"Age Repair Good, Wrinkle Cream Bad\",=Good=\nOK,=Unsatisfactory=\nThe first two ingredients are water and glycerin,=Poor=\nPractically Perfect,=Excellent=\nIt Works,=Excellent=\nI Love Everything Rusk! ;*,=Excellent=\nThis is my favorite skin care.,=Excellent=\nCan't smell after a while.,=Good=\nSuper bright! Hurts eyes a bit.,=Good=\nAgreeing with almost everyone else,=Excellent=\nToo much hype.,=Unsatisfactory=\nRUSH TO BUY THIS BLUSH,=Excellent=\nWorth a try,=VeryGood=\ndoes the job,=Excellent=\n\"Not instant magic, but works all the same\",=VeryGood=\nWorst nail file ever!,=Poor=\nNot worth it,=Unsatisfactory=\nBottle dried up too quickly.,=Good=\nLove this Cream!!!,=Excellent=\nUse only if your hair is really dry (or has texture)...,=Unsatisfactory=\nSmells good,=VeryGood=\nWonderful results so far,=VeryGood=\ngreat conditioner,=Excellent=\nMakes my hair  hard,=Poor=\nI have switched!,=Excellent=\n\"This picture doesn't belong with the product since you only get one brush, the 2.5 Barrel\",=VeryGood=\nBronze Glow,=Unsatisfactory=\nDIDNT LIKE,=Unsatisfactory=\nSo pale I can hardly tell I'm wearing anything,=Poor=\nYOU CAN'T GO WRONG WITH THIS PRODUCT,=VeryGood=\nseems to be working,=Good=\ndoesnt really do anything,=Poor=\nExpected More,=Unsatisfactory=\nThis is For African-Type Hair,=Good=\nPoor quality soap,=Poor=\nNot for me,=VeryGood=\nFive Stars,=Excellent=\nNOW Foods Apricot Oil from amazon.com,=Excellent=\nit was okay,=Good=\nIt's okay but not perfect,=Good=\nWouldn't use anything else,=Excellent=\nFabulous product!,=Excellent=\nI thought it would be better,=Unsatisfactory=\nLooks nothing like the picture,=Poor=\nThis product is a miss for me,=Good=\nSmells nice....when I can smell it.,=Good=\nHate it.,=Poor=\nGreat Product,=Excellent=\nSurprisingly good quality at the price,=VeryGood=\nDoes not diminish fine lines,=Good=\nIt works!,=VeryGood=\nNo such luck,=Unsatisfactory=\nVery happy with this curler,=VeryGood=\nehh,=Poor=\nNot as light as it thinks it is,=Unsatisfactory=\nDidn't feel like it worked,=Good=\nGood color,=VeryGood=\n\"Good, but only to use at night\",=VeryGood=\nDoesn't remove makeup,=Unsatisfactory=\nPerfect for my skin but a little pricey,=VeryGood=\nSo-so,=Good=\nGoes on muddy,=Good=\nLIKE WAX,=Poor=\nBetter on dry hair than on wet,=VeryGood=\nIt's a shame it was discontinued.,=Excellent=\nI love Hempz products but.....,=VeryGood=\nSo So,=Good=\nSaved my nails,=Excellent=\ndoes not do what they say,=Unsatisfactory=\nGood all natural product,=Good=\nJust okay,=Good=\nNothing Special,=Good=\nOprah's Choice and Mine,=Excellent=\nThe colors online are misleading,=Poor=\nIt dries hair.,=Good=\nOk,=Poor=\nAverage shampoo,=Good=\n\"Very nice to use, helps skin.\",=VeryGood=\nDISAPPOINTED!!,=Poor=\nMy sensitive combination skin loves this,=Excellent=\nUsed to keep hair back while washing face,=Good=\nNot quite poreless,=Unsatisfactory=\nNot for me,=Unsatisfactory=\n\"SHORT, small brush\",=Unsatisfactory=\nTake my advice.,=Poor=\nLimited use hairdryer for long hair only,=Good=\nUnimpressive as foundation substitute. Holds promise as foundation primer.,=Good=\nalright,=Unsatisfactory=\n\"It's not a miracle cure, but you can see results\",=Good=\n\"not a masterpiece like Dior Homme or YSL L'homme, but very close\",=VeryGood=\n\"Fresh, Clean, Feminine - My daughter loves this scent\",=VeryGood=\nNot sure what is intended use,=Unsatisfactory=\nNot a fan,=Unsatisfactory=\nDidn't work for me,=Poor=\nGood and smooth,=VeryGood=\nVery nice eyelash glue!!,=VeryGood=\nI love it,=VeryGood=\n\"Awful, cheap product\",=Poor=\nCAME IN ONE BIG CRUMBLY MESS,=Poor=\nNo noticeable results,=Unsatisfactory=\ndidn't work on me,=Poor=\nFrizz ease pleassssse,=Unsatisfactory=\n\"works fine, but I see no difference vs regular non-ionic dryer\",=Good=\nNice fragrance but it just doesn't linger long enough!,=Good=\nIt's ok,=Good=\naveda,=Good=\nLasts forever!,=VeryGood=\nidk what happened,=Good=\nStill trying it,=Good=\ngreta,=Excellent=\nDescribed accurately but not long lasting curls.,=Good=\n\"Felt Great on Skin, Did not Lighten ANYTHING!\",=Unsatisfactory=\nso far so good,=VeryGood=\nAWFUL!  BURNT BBQ IS WHAT IT SHOULD BE!,=Poor=\nI like it!,=Excellent=\nGrow Edges,=Good=\nSure!,=Excellent=\nOver all good product,=Good=\n\"Wow, what a great tool\",=Excellent=\nsoft,=VeryGood=\nNot yet quite perfect just yet...,=Good=\nA favorite,=Excellent=\nExpensive and you will blow through it quick,=Unsatisfactory=\nI love this Conair Hot Air Curling Combo,=Excellent=\n\"Great idea, but the color enhancer is horrible\",=Good=\nNot great!,=Unsatisfactory=\nRevlon Shine Enhancing hair styler enhancer,=Excellent=\nWorks Well But Is Not 'Simple',=Unsatisfactory=\nLooks like its been opened??,=Poor=\nnot for fine wavy hair,=Poor=\nJust okay.,=Good=\nGreat &#34;fat&#34; hair in dry climate; not so &#34;fat&#34; in humid one!,=Good=\nYeesh,=Unsatisfactory=\n\"I'm note sure if it works, but I feel like it does\",=VeryGood=\nI like it,=VeryGood=\nLeaves my hair feeling great.,=Excellent=\nNot Dermalogica's best,=Good=\nOkay,=Good=\ngreat product but not for subtle looks,=VeryGood=\nA Waste!,=Poor=\n\"Poor quality, 2 of them cracked within weeks of purchase\",=Poor=\nReally Great Peppermint Lotion,=Excellent=\nI see no noticeable difference,=Unsatisfactory=\nehh,=Poor=\nNight cream,=VeryGood=\nI use it for almost EVERYTHING!,=Excellent=\n\"Cheap is the word, not inexpensive!\",=Poor=\nso la la...,=Unsatisfactory=\nUse on thick AA afro curly coily hair,=Good=\nmakes you soft to the touch,=VeryGood=\n\"Just \\okay\\\"\" so far...\"\"\",=Good=\nA Treat for Beat Feet!,=VeryGood=\noil of oregano 1oz,=Good=\nNice soap,=VeryGood=\nAn OK Oil,=VeryGood=\nToo small for most thumb nails,=Good=\nExcellent product...but,=VeryGood=\nNot a fan,=Unsatisfactory=\nDoes what it says,=Good=\nSmell Good,=Excellent=\nWaste of money,=Poor=\nHaven't even brought it and know it's fake,=Poor=\nNot for me,=Unsatisfactory=\n\"Not a sonic cleaner; damages your upper skin layer, comparison to Clarisonic and Nutrasonic.\",=Poor=\nBest hand lotion,=Excellent=\nThey changed the formula,=Unsatisfactory=\nDelivers What It Promises,=VeryGood=\nGood value,=VeryGood=\nNot great for Acne Prone Skin,=Unsatisfactory=\n\"Like how it works, not how it feels\",=Good=\nNot for people with arthritis,=Good=\nLike the Hydrox Line,=Good=\nLove this color!,=Excellent=\nSoak off gel wraps,=Unsatisfactory=\nFresh,=Unsatisfactory=\nHeavy!  Very Heavy duty ...,=Good=\n\"Cheap,useful, and popular\",=Good=\nI had some real issues w/this product - read ingredients! :(,=Poor=\nworks!,=VeryGood=\nMaybelline New York Dream Matte Mousse,=Good=\nNot for me!,=Unsatisfactory=\nNothing spectacular...,=Unsatisfactory=\nLove this product.,=VeryGood=\nNot Effective and too Expensive,=Poor=\n\"Great product, bad shipping.\",=Good=\nNot for me,=Good=\nCreamy and smooth,=VeryGood=\nI like it.,=VeryGood=\nFAR TOO SWEET SMELLING,=Poor=\nI do not like it.,=Good=\nhmm,=VeryGood=\n-,=Good=\nGood product,=VeryGood=\nThick,=Good=\nWorks great!,=VeryGood=\nDon't Buy,=Poor=\nGood product,=VeryGood=\neasy to use,=VeryGood=\nStains pillow,=Poor=\nStaple in my daily makeup routine,=Excellent=\nForget it,=Poor=\nSuper smelly!!,=Unsatisfactory=\nGreat color,=Excellent=\nBad item,=Poor=\nGreat product,=Excellent=\nDisapointed,=Good=\nGot the 2 inch,=Excellent=\nI cannot get this to work right.,=Poor=\n\"Funny color at first, then mellows\",=VeryGood=\nIt's good.,=Good=\nthis light weight emulsion eye cream is just what the ...,=VeryGood=\n50% useful,=Poor=\nquick touchup stick,=VeryGood=\nPerfect Nude Pink!,=Excellent=\nMy new favorite brush!!,=Excellent=\nStarts out good but eventually back to dry,=Good=\nIts not too good,=Unsatisfactory=\ndisappointed,=Poor=\n\"Great Colour, Not So Great Conditioner\",=Good=\nGood results so far.,=VeryGood=\nBest dish soap around,=Excellent=\ngood for the price,=VeryGood=\nToo much Fragrance!  Cream is heavy.,=Good=\nIt works fine but use carefully,=VeryGood=\nNice bath brush,=VeryGood=\nCan't live without it,=Excellent=\nworks fine,=VeryGood=\nPalmer's Skin Therapy Oil,=Good=\nGreat cleaser; terrible pump,=Good=\nIt may be a great product but the smell made me gag,=Poor=\nThis relaxer is an OVERRATED joke!,=Poor=\nLooked purple,=Poor=\nGreat hair stuff!,=Excellent=\nIt gets the job done,=VeryGood=\nOkay....,=Good=\nBlegh,=Poor=\nDecent For A Gel,=Good=\nNARS Orgasm Shimmer Nail Polish,=Unsatisfactory=\ngood idea but doesn't live up to expectations,=Unsatisfactory=\nNot Bad,=Good=\nThe best out there,=Excellent=\nNothing special - just an expensive lip gloss,=Good=\nTerrible/Rip Off,=Poor=\nThey should have more stars!,=Excellent=\nDoes not do what it claims,=Poor=\nthis isn't what i expected,=Unsatisfactory=\nPowerful scent,=Unsatisfactory=\n\"yes, they look ridiculous but they work\",=Excellent=\nNot my favorite...,=Good=\n\"Did not work, left hair even more brittle.\",=Poor=\nGood but not great,=Good=\nGreat Dryer,=VeryGood=\nBRING IT BACK AMAZON,=Poor=\nForever ago.,=Good=\nIt is an interesting product,=VeryGood=\nYummy,=Excellent=\nCan't rate this low enough,=Poor=\nIm not amazed with this lipstick.,=Unsatisfactory=\nWTF,=Unsatisfactory=\nGreat Buffer,=Excellent=\nPoor Results,=Unsatisfactory=\nBy Tracey,=Unsatisfactory=\nThe Best So Far For Dry Flaky Hands,=Excellent=\nDidn't work for me,=Unsatisfactory=\nSmells like gingerbread,=Good=\nVery good product but moisturising cream is missing,=Excellent=\nIt works Very Very moderarely,=Unsatisfactory=\nReally Nice Natural Shampoo - smells great!,=VeryGood=\nGreat product,=Excellent=\nCleans my hair and leaves it soft and managable,=Excellent=\n\"They stay in well, and live up to the name\",=Excellent=\nVirtually scent-free,=Unsatisfactory=\nDid not like,=Poor=\nReal results,=VeryGood=\nCouldn't believe it,=Excellent=\nNo difference in my dark circles!,=Poor=\n\"Fresh, clean, light fragrance. Not overpowering and pleasantly subtle.\",=VeryGood=\nNot a very strong Retinol,=Unsatisfactory=\nOlay Regenerating Serum,=Excellent=\nNot for those with pigmented lips...,=Good=\nOUCH! Takes your skin right off,=Unsatisfactory=\nDoes work,=VeryGood=\nNice but,=Good=\nNothing,=Poor=\ncant make it work,=Poor=\nNot the same,=Unsatisfactory=\nAllergist recommended,=Excellent=\nnot a good buy,=Unsatisfactory=\nPretty good,=VeryGood=\nNot for me,=Poor=\n\"Invisible, unsmellable, effective\",=Excellent=\nReally hopeful about this cream...,=Poor=\nMezza mezza,=Good=\nA little too greasy but I still like it..,=VeryGood=\nGreat product!,=Excellent=\nThe lighting isn't aligned correctly,=Unsatisfactory=\nNo thank you!,=Unsatisfactory=\n\"Not a miracle worker but a high quality, non-drying cleanser\",=VeryGood=\nGuess by Guess,=VeryGood=\nCareful if you have allergies,=Good=\nNo Bull..Olay..~!~,=Excellent=\nthe perfect cuticle oil!,=Excellent=\nWorth the price,=VeryGood=\nWorks just like it says it will,=Excellent=\nwish i didn't feel the way i did,=Unsatisfactory=\nPerfect product.,=Excellent=\ngreat for my 3-year-old,=VeryGood=\ni hate this pomegranite wen!!!,=Poor=\nClean Alluring Scent.,=VeryGood=\n\"For a Quiet Dryer, It's Just Okay\",=Good=\nNice product,=VeryGood=\nDONT WASTE YOUR MONEY,=Poor=\npilled,=Poor=\nA little disappointed,=Good=\nI can't believe this works for my acne-prone skin,=VeryGood=\nGreat alternative to lotion,=Excellent=\n\"Good moisturizer, but not for face\",=VeryGood=\nGreat hair treatment,=VeryGood=\nEh. So so.,=Good=\n\"eh, could be better.\",=Good=\nThis stuff is wonderful,=Excellent=\nApply with caution!,=Poor=\nWas great while it lasted,=Unsatisfactory=\nIt's just alright.,=Good=\n\"LOVE the color but the formula could be better, hence the 4/5 stars\",=VeryGood=\nI love it!,=Excellent=\nIt smells divine and love it but by the time it is half empty ...,=Unsatisfactory=\nQuickly dulls. Doesn't catch nails.,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nA bit too light for my face but is gentle on my sensitive skin,=VeryGood=\neh,=Unsatisfactory=\nPretty good,=Good=\nNot a fan,=Poor=\n\"Excellent, real makeup sponge. Durable.\",=Excellent=\nShould be call Lift nail primer,=Poor=\nexcellent performance but quality could be better for the price,=VeryGood=\nDifferent,=Unsatisfactory=\ndoes a good job,=VeryGood=\nI would recommend it,=VeryGood=\nWorks pretty well.,=VeryGood=\nStays on all day,=Excellent=\nIt is not a good tool.,=Poor=\ndoesn't exfoliate my skin enough,=Unsatisfactory=\nLove love,=Excellent=\nGreat For Dry Skin,=VeryGood=\nGarbage,=Poor=\nNot as good as it used to be...,=Unsatisfactory=\nBlack Mascara,=VeryGood=\nWorks great,=VeryGood=\nDoes what it was meant to do.,=VeryGood=\nLove this Outlast Lipcolor,=Good=\nMeh,=Unsatisfactory=\nNot for sensitive skin,=Unsatisfactory=\nGreat product!,=VeryGood=\nDo not purchase!,=Poor=\nSmells good.,=Good=\nCant really tell,=Unsatisfactory=\nPerfect Skin,=Excellent=\nDidn't work for me,=Unsatisfactory=\nnothing special,=Good=\nOnly OK,=Good=\nGood flat iron.,=VeryGood=\nCake eyeliner,=Good=\nHuge,=Poor=\nPamper That Nose!,=Excellent=\nOk,=Unsatisfactory=\nnot like the silver,=Good=\nAWFUL!!!!,=Poor=\n\"Calming, thick and great for night\",=VeryGood=\nKnow your hair and do a skin test,=Unsatisfactory=\nOPI is quality brand,=VeryGood=\nkeratin,=VeryGood=\nyou can do curls and waves,=VeryGood=\nVery good,=VeryGood=\nReduces pores yet too strong for my eyes,=VeryGood=\nMellows a little as it dries,=VeryGood=\nDifficult to work with,=Poor=\nSmoothe Finish,=VeryGood=\nOK&#8230;don't care for the smell,=Good=\nHair,=Poor=\nConfused,=VeryGood=\nImprovement In Tone,=VeryGood=\nokay but not as good as the other style of clamp,=Good=\nUseless! Did nothing!,=Poor=\nThis is the best drying iron I have ever owned,=Excellent=\n\"Heavy, Oily and Smells Horrible\",=Poor=\nPleasantly surprised,=VeryGood=\ni would not recommend this to my worst enemy,=Poor=\nOK,=Unsatisfactory=\nWhat's so great about this mascara?,=Poor=\n\"Horrible Now, Used to be Fabulous\",=Poor=\nSo So,=Unsatisfactory=\nNOT WHAT IT CLAIMS TO BE.,=Unsatisfactory=\nThis is a joke,=Poor=\nGreat Hair Setter,=Excellent=\nlove it !,=Excellent=\nDid not Like,=Poor=\nBest Moisturizer Ever,=Excellent=\nGreat for Acne,=Excellent=\nDecent but with flaws,=Good=\nMy Least Favorite Tresemme Shampoo,=Good=\nI can't believe I paid 3+ dollars for this!,=Unsatisfactory=\nIdeal for lightly exfoliating around the eyelids/nose area,=Excellent=\nOnly for dry skin,=Good=\nI did not like it,=Unsatisfactory=\nu vl get what u pay for,=Poor=\nGreat stuff!,=Excellent=\nNo Good,=Poor=\nbaby powder scent,=Poor=\nblackhead eliminator,=Poor=\nReally haven't seen a major difference and my expectations were ...,=Unsatisfactory=\nHit or miss depending on your hair type,=VeryGood=\nTerrible!,=Poor=\ndang! it actually works!,=Excellent=\nNice,=VeryGood=\nRight to Bare Legs.,=Poor=\n\"Gentle, pleasant, and effective -- what more can you ask for?\",=VeryGood=\nHair became dull and dry,=Unsatisfactory=\nNot for my face,=Unsatisfactory=\n\"It's okay, but not better than any $35-$40 cologne\",=Unsatisfactory=\ni was shocked,=Poor=\nIt's always something new...,=Poor=\njust regular shampoo dyed red,=Good=\nIt doesn't work,=Poor=\nAbsolutely useless,=Unsatisfactory=\nNot bad but I don't like that much,=Unsatisfactory=\nSoft Skin,=VeryGood=\nPores begone,=Excellent=\nGreat,=Excellent=\nLove this!!,=Excellent=\nOne of the few Vaseline's with an OK scent.,=Good=\nworks and gentle to your skin!,=VeryGood=\nNot for me........,=Poor=\nExacerbates Rosacea,=Poor=\nVery Subtle,=Good=\npoor coverage,=Poor=\nPTR AMAZING.,=Excellent=\nA Hint of Granny,=Good=\nDoesn't works for me,=Good=\ni will never buy this again,=Poor=\nWonderful hand cream!,=Excellent=\n\"Non-greasy, frizz fighting and detangling\",=VeryGood=\nDark color!,=Good=\nnot impressed,=Unsatisfactory=\nGreat face cleanser!!,=Excellent=\nIt's an average product for relaxed hair,=Good=\nWas not that impressed...,=Good=\nLooking forward to seeing more.,=VeryGood=\nJust Okay for Me,=Good=\nHonest Review (Would not recommend),=Poor=\nGreat IF,=VeryGood=\nGood Hair dryer,=VeryGood=\nThe Best,=Excellent=\nNothing Really Special,=Good=\nHype hype hype.,=Unsatisfactory=\nbad product and not working,=Poor=\nVery moisturizing & lasts a long time,=Good=\nRemarkable washable waterproof mascara,=Good=\n\"Kalahari NARS duo - great classic color combo, silky texture\",=Excellent=\nMakes you white,=VeryGood=\nGreat lotion,=Excellent=\nIT smells!,=Poor=\n\"Great for dry, sensitive skin\",=VeryGood=\nCan't tell,=Good=\nGreat for removing make up!,=VeryGood=\nNot for me,=Unsatisfactory=\nVERY drying!,=Poor=\nLove color,=Excellent=\nToo Heavy on my Hair,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nBeen wearing them since I got them,=Excellent=\nFeels Great!!,=VeryGood=\nNot a fan,=Unsatisfactory=\nThis is not the mitt you are looking for... (waving my force laden hand),=Poor=\nIt's only good to use with hot tools.,=Unsatisfactory=\nNot so great...,=Unsatisfactory=\nNot sure if its work.,=Good=\n\"They did not work for me: slipped out, irrirated the skin, did not solve the problem\",=Poor=\nDisappointingly Oily,=Unsatisfactory=\nNatural tan...even on pale skin!,=VeryGood=\nTOMATOES,=Poor=\nFresh,=VeryGood=\nGood for Some..Not Good for ALL,=Poor=\nThe best hand cream ever...,=Excellent=\n\"Love the product for sensitive skin, faulty pump\",=Good=\nNice Wash for Sensitive Skin,=VeryGood=\nLeaves weird sheen on skin,=Unsatisfactory=\nbad product,=Poor=\n\"\\Sheer French Color\\\"\" is streaky and unnatural.\"\"\",=Unsatisfactory=\n\"Good smell, but not the best results for me\",=Good=\nNot so much,=Unsatisfactory=\nMaybe it's just me...,=Good=\nThree Stars,=Good=\nthey work but...,=Unsatisfactory=\nUseless,=Poor=\n\"Love the stuff, dislike the smell\",=Good=\n2 1/2 months and NO improvement in pigment,=Unsatisfactory=\nLove. Love. Love. Love. Love. Love.,=Excellent=\nNeat solution to age-old problem,=Excellent=\nNo effect?,=Good=\nEasy Wrapping and Easier Managing!,=VeryGood=\ngreat for your hair!,=Excellent=\nOkay...,=Good=\n5 months after.. Good improvement!,=VeryGood=\nDied after 16 months,=Poor=\nhealthy polish alternative,=Unsatisfactory=\nSmells Pretty,=VeryGood=\nSuch a waste!,=Poor=\n\"Ok for everday use, but don't skip a day\",=Good=\nCoola,=VeryGood=\nclassic,=Excellent=\nFRANKLIN,=Good=\nUsed to be great....,=Poor=\n\"Safe and Natural Looking, Just Don't Expect Knock-Out Lashes\",=VeryGood=\nam I doing something wrong?,=Unsatisfactory=\n\"Great smell, not long lasting.\",=VeryGood=\nOkay I guess,=Good=\n\"The sample size worked great, but this broke me out.\",=Poor=\nA nice serum,=Good=\nYou won't be disappointed.,=Excellent=\ngood product,=VeryGood=\nNot a true natural cream.,=Unsatisfactory=\nFAB Red that every one can wear,=Excellent=\nDidnt work,=Unsatisfactory=\nGreat dryer overall - had to replace at 9 months,=VeryGood=\nPearl Powder,=Unsatisfactory=\n\"Hate this new powder, always looks chalky in any color\",=Poor=\nDon't let the first time fool you!,=VeryGood=\n**WARNING!!!! ** DO NOT USE THIS!,=Poor=\nDoes its job.,=Good=\nWay Better Than Drugstore Toners!,=Excellent=\nThe brush is perfect for applying nail art charms.,=Excellent=\nGood buy for the price,=VeryGood=\nNot worth a cent.,=Poor=\nVery Rough,=Unsatisfactory=\nAnother Strike Out,=Unsatisfactory=\nSo far so good,=VeryGood=\nBad reaction to it,=Poor=\nnot as advertised,=Poor=\nmight not buy again,=Good=\n\"Works, but...\",=Unsatisfactory=\nGreasy & The smell is powerful,=Good=\nSmells good but doesn't take off makeup,=Unsatisfactory=\nNOT a fabulous Fake!,=Poor=\nPleased So Far,=VeryGood=\nX-fusion applicator,=Unsatisfactory=\nNot recommended,=Poor=\nOkay,=Good=\nJust as messy,=Good=\nLOVE this tinted moisturizer,=VeryGood=\nI don't like it,=Poor=\n\"Dried my skin out, after the third day of use!\",=Poor=\nThe standard,=Excellent=\nWill magnify your face to scary proportions,=Excellent=\nCleans,=Good=\nExcellent,=Excellent=\nGreat tool!,=VeryGood=\nOrganix has the same thing for way less,=Unsatisfactory=\nlove this,=Excellent=\nTerrible product! Made my facial lines appear deeper. It felt heavy like a mask. Scent was medical,=Poor=\nLike a First Aid Kit in a Bottle!,=Excellent=\n\"Works OK, Not a Fan of the smell\",=Good=\nNot worth the money!,=Unsatisfactory=\nuse them for my hair extensions,=VeryGood=\n\"Good, but not for me\",=Good=\nEasy To Use Highlighting Pen Has Multiple Uses,=VeryGood=\nToo difficult to use,=Unsatisfactory=\nnothing special and it does NOT control oil,=Good=\nNatural but Chemical-y,=Good=\nUnproven and too expensive,=Unsatisfactory=\nDidn't like the smell,=Unsatisfactory=\nhorrible color,=Poor=\nBeauty Secret ... &#1587;&#1585; &#1575;&#1604;&#1580;&#1605;&#1575;&#1604;,=Excellent=\n\"LOVE THE AROMA,BUT\",=Good=\nConfused about other reviews - no allergies here,=VeryGood=\nDon't waste your money,=Poor=\nThis is not like the similar ones in the mall,=Unsatisfactory=\nCouldn't be more enthusiastic!,=Excellent=\n\"Good, but too scratchy!\",=Good=\nSeems to work well,=VeryGood=\nAnother great product from Earth Science.,=Excellent=\nI love this lotion....and was quite surprised.,=Excellent=\ndoesnt work for me,=Poor=\nGreat for Lashes,=Excellent=\nBurnt my face :(,=Good=\nleaks,=Unsatisfactory=\nLike this product,=VeryGood=\nIt was... Meh.,=Unsatisfactory=\nIt's too greasy/oily to be makeup,=Poor=\nI'd give it 5 stars but...,=VeryGood=\nNothing special,=Poor=\nGood Product,=VeryGood=\nCreases and looks really weird after a while,=Unsatisfactory=\nEhhhhh,=Poor=\nSeems to work well so far,=VeryGood=\nFave,=Excellent=\nit works,=VeryGood=\nSmells gross,=Unsatisfactory=\n\"I'll use the rest, but won't buy again\",=Unsatisfactory=\nHalf pleased,=Good=\n\"Was hoping for a more dramatic result, oh well...\",=Unsatisfactory=\nluv it!!!!,=VeryGood=\nZapzyt,=Excellent=\n\"Good enough for me, a few minor issues\",=VeryGood=\nDon't like the smell...,=Good=\nBroke me out,=Unsatisfactory=\nNothing Special,=Unsatisfactory=\nIt's okay,=VeryGood=\nNice brush,=VeryGood=\nDon't do it,=Poor=\nEasier to use than menstrual cups,=Excellent=\nSOFT AND SUPPLE,=Excellent=\nbroke while i put on clothes,=Poor=\nHORRIBLE,=Poor=\nSon wouldn't use it,=Good=\nGood,=VeryGood=\n75/25,=VeryGood=\ngreat product.,=Excellent=\nAttention! The plates are NOT as the most helpful review says!,=Poor=\nNO PRISMATIC EFFECTS,=Poor=\nso far so good,=VeryGood=\nIvory,=Unsatisfactory=\nWorked on my very oily scalp (after 2 weeks),=Excellent=\nBeautiful Brush,=Excellent=\nExtra strength shampoo,=Excellent=\nPowerful Acrylic Gel,=VeryGood=\nTerrible,=Poor=\nNice for work and daily wear but is barely noticeable after a few hours.,=VeryGood=\n\"works, wish it smelled different\",=VeryGood=\nOkay,=Good=\nexpensive shadow you can also use on your eyelids,=Poor=\nVery Convenient,=VeryGood=\nWorst shampoo i have ever used!! BIG waste of money!!,=Poor=\nRarely use this color out of all the other colors I own.,=Poor=\nNeutrogena Lip Balm,=Excellent=\nTry it,=Excellent=\nVanicream Fan,=Excellent=\nNot the one for me,=Unsatisfactory=\nGreat make up sponge!,=VeryGood=\n\"actual color does not match the picture, goes on in one coat.\",=VeryGood=\nBUMMER!!,=Good=\nTHE BEST! Better than my own Dermatologist-prescribed acne-clearer,=Excellent=\nJust a pitty...I did not receive it,=Unsatisfactory=\nYour feet will thank you!,=Excellent=\nNot great patchouli,=Unsatisfactory=\nIts ok. Original poison is better after the two scents are settled.,=Unsatisfactory=\nSimple one step cleansing...,=Excellent=\nNot for wrinkles,=Poor=\nIt's just ok for me,=Good=\nIt's alright,=Good=\nA Decent Conditioner,=Good=\nSo far So good,=VeryGood=\nStrong when used with cleanser,=VeryGood=\nNot the best scrubber,=Unsatisfactory=\n\"Very nice, but would like more moisturizing\",=VeryGood=\nyuck,=Poor=\nWaste Of Time,=Poor=\nVERY GOOD FOR SENSITIVE SKIN,=Excellent=\nIt's ok,=Unsatisfactory=\nNot Waterproof!!,=Poor=\n\"I don't know what it's doing, but I like it\",=Excellent=\nThey're Okay,=Good=\nA Wet Mess,=Poor=\nSo many!,=Good=\nVery  Much Like Another China Glaze polish,=VeryGood=\nThis is the worst product ive ever bought off amazon...,=Poor=\nLeft my hair feeling even grungier!,=Poor=\nvery dry,=Unsatisfactory=\nMy favorite,=Excellent=\n\"A Luscious lotion for those who enjoy very tropical, stronger scents.\",=Good=\nGreat Product -- BUT BEWARE! MAY BE EXPIRED!,=Good=\nFlimsy and not moveable,=Good=\ndid not work for me,=Poor=\nIt just stopped working,=Poor=\nNot worth it $,=Unsatisfactory=\nDid not remove mascara,=VeryGood=\nDid not work for me the way I hoped.,=Unsatisfactory=\ndisappointed,=Poor=\n\"Just average, Doesn't live up to the hype\",=Good=\n\"My first one worked wonderfully and lasted 2 1/2 years, so I'm getting another!\",=Excellent=\nI have to use a manual curler afterwards..,=Unsatisfactory=\nGreat face mask,=Excellent=\nso-so,=Good=\nWorks great on feet,=Excellent=\nKnow your product!,=Excellent=\ngreat product,=VeryGood=\nGreat for cheeks but not so much for lips,=Good=\nLooked good!,=VeryGood=\nStill a winner after many years,=Excellent=\ncame broken,=Poor=\nEvening wear,=VeryGood=\n\"Color is strange,\",=Unsatisfactory=\nLove the smell but a shame it's not last as long,=Good=\nDoes the job,=VeryGood=\nI think it CAUSES dandruff,=Poor=\nDoesn't condition,=Unsatisfactory=\nHelps heal pimples faster.,=Good=\nIt's OK,=Good=\nToo sheer,=Unsatisfactory=\nOverpowering smell for sensitives,=Unsatisfactory=\nIt's a brush!,=Good=\nI really like how this feels,=VeryGood=\nMakes no difference to me,=Unsatisfactory=\nClumpy!,=Good=\nChoco-vodka?!?!?,=Poor=\nPalladio Herbal Dual Wet and Dry Foundation,=Excellent=\nformula is to runny and didn't notice a difference,=Unsatisfactory=\n\"Attractive, powerful, and it drys my hair faster.\",=Excellent=\n\"Good for problem areas, not too great for older skin\",=Good=\n3 words,=Poor=\nUncomfortable,=Unsatisfactory=\nThis soap broke so easily.,=Poor=\nLike you just applied a tub of oil to yourself,=Unsatisfactory=\nMuch prefer CeraVe for my son's eczema,=Unsatisfactory=\nGeneric Scrub Gloves - They Do the Trick,=Good=\nLittle more than a dollar store bargain,=Good=\n\"good for lips, not so much for cheeks\",=Good=\nGood product,=VeryGood=\nGreasy looking after an hour,=Unsatisfactory=\nBush/Dotting tool,=Good=\nSmelled funny,=Unsatisfactory=\nMaybe I'm just a tiny exception to the Philosophy lovefest?,=Poor=\nThree Stars,=Good=\nBudget priced cosmetics,=Good=\nMuch darker than appears....,=Unsatisfactory=\nWorks nicely!,=Excellent=\nlove!,=Excellent=\n\"Great smell, very moisturizing\",=VeryGood=\ngood,=Excellent=\nToo frosty for me.,=Unsatisfactory=\nThe only soap we all agree on...,=VeryGood=\nbreak out more.,=Unsatisfactory=\nSmells Good,=Excellent=\nAnother waste of money....,=Poor=\nnice smell,=Good=\nToo Soft Really,=Unsatisfactory=\nAbsolutely not helpful,=Poor=\nKinda looks like a French manicure,=Excellent=\nSkeptical at first but I love it!,=Excellent=\nI think this product is really going to help.,=VeryGood=\nnot too impressed,=Good=\nEh...,=Good=\nbeautiful,=Excellent=\nGood product for the price.,=VeryGood=\nGreat stuff!,=Excellent=\nSee Update,=Good=\nLOVE  IT,=Excellent=\nLove it,=VeryGood=\nI had to take it off after an hour.,=Unsatisfactory=\nvery talc-y,=Unsatisfactory=\nok,=Good=\nColor choice not at it appears.,=Good=\nproduct delivers,=VeryGood=\nGood deal,=VeryGood=\nNot Sure,=Good=\n\"old fashioned, not necessarily for old ladies\",=Good=\nNot For Me,=Poor=\nFor my mother in law,=VeryGood=\nGlucosamine fights sun damage - Ineffective against hereditary dark circles,=Unsatisfactory=\n\"Works well, if you can get the dual pump to work\",=Good=\nA good product - in theory,=Good=\nGodsend for Natural Hair -- Price too High on Amazon,=VeryGood=\nThis is the Only Cream to Ever Make Me Happy,=Excellent=\nCan't go wrong with main and tail,=VeryGood=\nUseless,=Poor=\nGood color lip balm,=VeryGood=\nLove Sally Hansen products!,=VeryGood=\naahhhhh,=Excellent=\nso small,=Unsatisfactory=\n\"VERY stinky, and VERY orange.\",=Good=\nvery strong scent,=Unsatisfactory=\nVery short range!,=Unsatisfactory=\nWaste of time and money,=Poor=\nNo Big Deal,=Unsatisfactory=\ncologne not stored properly?,=Poor=\nGo back to the drawing board,=Poor=\nNot a fan,=Unsatisfactory=\nWorks well but. .,=VeryGood=\ndid nothing for us,=Poor=\nMeh,=Good=\nFlakes and burns,=Poor=\nColor good,=Poor=\nGood if you know how to put them on,=Unsatisfactory=\nMineral Oil,=Poor=\nclogs pores,=Poor=\nhas helped some,=VeryGood=\nDoesn't do anything,=Poor=\nOlay Regenerating Serum,=Excellent=\nMy mom stole mine,=Excellent=\nSmall and doesn't stay warm,=Unsatisfactory=\nNot as good as expected!,=Good=\nDetangles,=Good=\n\"Broken pieces, took forever to ship\",=Poor=\nNew Formula Doesn't Work :(,=Unsatisfactory=\n\"EVAPORATES WHEN YOU \\BLINC\\\"\"\"\"\",=Unsatisfactory=\n\"Wow, amazing color!\",=Excellent=\nToo small for most blush brushes,=Unsatisfactory=\nehh not so great,=Unsatisfactory=\nWorks,=Excellent=\n\"It Feels Really Nice, But Too Expensive!\",=VeryGood=\nFab!!!!,=Excellent=\nElta MD is a top product for sunscreens,=Good=\nPretty,=Unsatisfactory=\nOily Scalp? Look elsewhere.,=Poor=\nGreat for removing nail polish mistakes,=Excellent=\n\"Nice color, no staying power\",=Unsatisfactory=\nWorks Well and Good Value,=VeryGood=\nLasts too long,=Good=\nEgyptian Plum,=Excellent=\nWanted to like it more,=Good=\ntoo sticky and smelly,=Unsatisfactory=\n\"An effective, but not so gentle exfoliant\",=Good=\nWonderful Cologne,=Excellent=\nAn excellent conditioner at a great price,=Excellent=\nDove Cream Oil Alright for the Price,=Good=\nIt breaks me out,=Good=\nMaybe it's the formula?,=Unsatisfactory=\nJust right for me,=Excellent=\nGood for at home facial,=VeryGood=\nLooks orange on fair skin,=Poor=\nDermatologist Recommended,=VeryGood=\ndont like,=Unsatisfactory=\nPretty Good,=Excellent=\n\"Did not do anything to help make up last, made make up cakey\",=Poor=\n90%cotton 10%lycra just the right texture!,=Excellent=\nToo Watery,=Unsatisfactory=\nReally........dumbest thing I ever purchased.....,=Unsatisfactory=\nCheaper elsewhere,=Good=\nFeel like a salad!,=VeryGood=\nSuprising!,=VeryGood=\nNot for long hair,=Poor=\nlukewarm,=Poor=\n\"Didn't help with wrinkles, but helped with dark spots\",=Good=\nNot for me,=Unsatisfactory=\nlike it.,=VeryGood=\nrough and dry,=Poor=\nNot For Me,=Unsatisfactory=\nNot so good.,=Unsatisfactory=\nFrench Affair,=Excellent=\nno,=Unsatisfactory=\nMade my acne worse,=Poor=\nheavy greasy,=Poor=\nL'oreal Visible Life line minimizing and Tone Enhancer,=Excellent=\nVery good product,=VeryGood=\nBest soap,=Excellent=\nits ok,=Good=\nDidn't do much.,=Unsatisfactory=\nSo far...,=VeryGood=\nUseful,=VeryGood=\nGreat product!,=Excellent=\n\"Skin Soft, No Blackhead Removal\",=Unsatisfactory=\nRich when added to foundation as a tinted moisturizer.,=VeryGood=\nNice product texture,=VeryGood=\nVery Oily,=Poor=\n\"Very sheer, three or more coats needed\",=VeryGood=\nNivea My Silhouette,=Good=\nFair Skin People Be Careful,=Good=\nCheaply Made. OK if you don't mind Superglue-ing the Metal Tips On,=Unsatisfactory=\nNo,=Unsatisfactory=\nPick another product.,=Unsatisfactory=\nGreat for some,=Good=\na slight tan,=Good=\nStaple lotion,=Excellent=\n\"no Lightening, no Brightening,......NOTHING\",=Unsatisfactory=\nBought this on a whim,=Good=\nGreat Stuff!!,=Excellent=\nLighter (powder-y) African musk.....,=Excellent=\nExcellent results,=VeryGood=\nNot what I expected....,=Unsatisfactory=\nThe Holy Grail of Gels,=Excellent=\nDangerous ...,=Poor=\nFollow directions,=Excellent=\nNice lipstick! :),=VeryGood=\nno bubbles,=Unsatisfactory=\nPaula's Choice is right,=Unsatisfactory=\nEh... not pleased... skin softer but thats it,=Unsatisfactory=\ncompact drying option,=Excellent=\nGood product but needs some changes,=VeryGood=\n\"Beware, the tube has shrunk\",=Good=\nJust ok,=Good=\nFail,=Unsatisfactory=\ni love this perfume,=Excellent=\nGreat scent.,=VeryGood=\nNice body wash,=VeryGood=\nNot What I Had in Mind,=Unsatisfactory=\nGreat moisturizer!,=Excellent=\nSatisfied Customer,=Excellent=\nNice Scrub,=Excellent=\nlove this company!,=VeryGood=\nNot worth it,=Unsatisfactory=\nNot very absorbent,=Unsatisfactory=\nPleased Customer,=Excellent=\nNice Curls,=VeryGood=\nLESS TOXIC BUT HAIR NOT SO CLEAN,=Unsatisfactory=\nNo Added Value Over Using Advanced Night Repair Alone.,=Good=\nstuff will breakouts so go easy,=VeryGood=\nToo dark for blondes,=Unsatisfactory=\nbreak out,=Unsatisfactory=\nDon't bother....,=Poor=\nGood quality,=VeryGood=\n\"CARUSO PROFESSIONAL MOLECULAR STEAM ROLLERS WITH SHIELDS, MEDIUM\",=Excellent=\nBit Stiff,=Good=\nMistake to purchase from this vendor...,=Poor=\n\"Thick coverage, buildable, but clumpy\",=Good=\nwasnt crazy about this,=Poor=\nThought I'd try just to see if it works.,=Excellent=\nIt's just ok,=Good=\nhate it made my skin burn and left spots.,=Poor=\nThe foulest of the foul,=Excellent=\nWorks fine,=VeryGood=\nMay Deep Clean but NO Odor Preventative Ingredients,=Unsatisfactory=\nI started with this product,=Good=\nTakes too many coats,=Unsatisfactory=\nExcellent wear.  The color does not come out like it looks in bottle.,=Good=\nGet what you pay for,=Good=\nWaste of money since product does not work for me,=Unsatisfactory=\nPoor quality,=Unsatisfactory=\nDecent facewash,=Good=\n\"This is a powder, not a spray\",=Good=\nGreat product,=VeryGood=\nYummy!,=Excellent=\nNot what I expected,=Good=\nShort-lived...,=Unsatisfactory=\nMotions' Inconsistent Story...,=Good=\nnot this smell...,=Unsatisfactory=\n\"If I had to choose only one product to take care of my face for the rest of my life, it would be this serum.\",=Excellent=\nWaste of Money,=Unsatisfactory=\nThis stuff is great!,=Excellent=\nNo redeeming qualities to this disappointing product,=Poor=\nToo small,=Unsatisfactory=\nBlackhead remover,=Unsatisfactory=\n\"Cute packaging, for a piece of crap that doesn't work\",=Poor=\n\"Great for extensions in baby fine, thin hair!\",=Excellent=\nwonderful product,=Excellent=\nFlat iron spray,=VeryGood=\nSorry it's not subscribe and save anymore,=VeryGood=\nNot For Me,=Unsatisfactory=\nBeautiful color!!,=Excellent=\nNot Impressed,=Poor=\nTook a while to get the hang of this one...,=Good=\nDisappointed,=Poor=\nall broken,=Poor=\nWould only be better if it were a cream.,=VeryGood=\nOkay,=VeryGood=\nGood product.,=VeryGood=\nNot Bad,=Good=\nI didn't like them,=Unsatisfactory=\nThe best,=Excellent=\nCannot recommend,=Poor=\nWould be 5 stars except for the price,=VeryGood=\n\"Scent is amazing, but it doesn't last\",=Good=\nLighten my hair,=VeryGood=\nNot what I expected,=Unsatisfactory=\nAMAZING!!!,=Excellent=\nToo soft,=Good=\nokay,=Unsatisfactory=\nYou get what you pay for!,=Excellent=\nnot worth buying,=Unsatisfactory=\n\"aveeno positively radiant tinted moisturizer, spf 30 medium,2.5 ounceI\",=VeryGood=\nNot a good Quality lamp,=Poor=\nAlmost too soft!,=Unsatisfactory=\nTHE BEST DOESN'T HAVE TO BE THE MOST EXPENSIVE,=Excellent=\nSay NO to Carrots: Allergic reaction and poor customer service,=Poor=\nNot the color or texture I expected.,=Good=\nColor not good,=Unsatisfactory=\nGreat Hand Lotion,=Excellent=\nToo cheap too be true,=Poor=\nAWESOME!!!,=Excellent=\nDoesn't work,=Poor=\nNot great,=Unsatisfactory=\nReally clean,=Excellent=\nnot good it peels off,=Poor=\nNo difference!,=Unsatisfactory=\nDesert Essence Thoroughly Clean Face Wash,=Excellent=\nSmells gross and does nothing.,=Poor=\nI never thought I would use a brush to exfoliate my face - but this is PERFECT!,=Excellent=\nThe Blonde is Too Dark and Too Gold!,=Unsatisfactory=\nNothing will give skin as good as this!,=Excellent=\n\"It makes makeup go on smoothly, but at the cost of feeling greasy\",=Unsatisfactory=\nMistral changed the Wild Blackberry scent!,=Unsatisfactory=\nderma e Refining Vitamin A Cr&egrave;me,=Excellent=\nO.K.,=Good=\nTriumph of marketing over science!,=Good=\nSeems to work.,=VeryGood=\nDidn't Work for Me,=Poor=\nDOESN'T GET YOUR HAIR CLEAN!,=Poor=\nNot as great as I expected after reading other reviews....,=Unsatisfactory=\nGood if it matches your skin,=Unsatisfactory=\nMy 'go-to' for flawless skin.,=VeryGood=\nNot a good investment.,=Poor=\nThese nails are not natural,=Poor=\nOk,=Unsatisfactory=\nYou get what you pay for.  Not for lefties.,=Good=\nok,=Poor=\nBroke Me Out More After A Few Weeks Of Use,=Poor=\nA lovely product,=Excellent=\nNecessary tool for the job...,=VeryGood=\nvery nice smell,=Excellent=\nLove the facial cleanser,=Excellent=\nAn average drug store cream,=Good=\n\"Very strong smell, unsure if it works\",=Unsatisfactory=\nGreat! But a bit long for me,=VeryGood=\nBS,=Poor=\nToo bulky for me,=Poor=\n\"Great for nightly use, but...\",=Good=\nNothing special?,=Good=\nSally Hansen Polish Remover 8 oz. Strengthening,=Good=\nGreat Moisturizing Oil,=VeryGood=\nmeh.,=Poor=\nNot such a great thing for me,=Good=\n\"Love the product, hate the packaging\",=Unsatisfactory=\nSimple Light Moisturizer,=Unsatisfactory=\nmeh,=Unsatisfactory=\nGreat brush,=Good=\nNice change from bar soap; handy in the locker room,=VeryGood=\nI love this top coat!,=Excellent=\n\"E gads, another gadget!\",=Unsatisfactory=\ndidn't work,=Poor=\nOvernight treatment.,=Unsatisfactory=\nNot seeing any changes,=Poor=\nWorks great for my sensitive skin.,=VeryGood=\nnot much better than lotion....,=Unsatisfactory=\nNot a great choice for sensitive skin or older skin,=Good=\n\"Do not buy, the mask is full of alcohol!!!!!!!\",=Poor=\nNice!,=Excellent=\n\"IT STINKS LIKE SULFUR 8 PRODUCTS, PLUS THE NAME ON BOX & TUBE IS V-I-R-G-O!\",=Unsatisfactory=\nHoneysuckle Rose has always been my staple deep conditioner!,=Excellent=\nDon't be fooled by silicones; Excellent Primer replacement,=Good=\nWORKS GREAT (SOMETIMES),=VeryGood=\nWouldn't buy again,=Unsatisfactory=\nMan oh Woman,=Excellent=\n\"Smells like lavender, works well.\",=VeryGood=\nFound to be Drying & Thick,=Unsatisfactory=\n***NOTHING TO RAVE ABOUT******,=Good=\nGreat lotion,=Excellent=\nIts ok,=Good=\nL'Oreal facial nightcream,=VeryGood=\nmeh,=Poor=\nDoesn't do anything && bad packaging. :(,=Poor=\nProduct not for me,=Poor=\n\"Ok, but not great\",=Good=\n\"Can't \\see\\\"\" any improvement.\"\"\",=Good=\nNot for sensitive skin,=Unsatisfactory=\nGood technology. Dicey device.,=Good=\nSTILL WAITING,=Poor=\nNot Great but Not Bad either....,=Good=\nwhat!? no brush!?,=VeryGood=\nNot a Fan,=Poor=\nPretty Nails Instalnt Polish Remover Regular,=Excellent=\n"
  },
  {
    "path": "data/MP2_2022_train.csv",
    "content": "text,label\ngood variety of colors,=Good=\nAlmost Runny and the Scent is So-So,=VeryGood=\ntoo artificial for me,=Poor=\nFixed my peroxide damaged hair.,=Excellent=\n\"Overpriced Dryer, No Differance In Hair\",=Poor=\nFood + Musk does not equal good,=Unsatisfactory=\nThis product did not work for me.,=Unsatisfactory=\nGood stuff!,=VeryGood=\ngood product,=VeryGood=\nSHAR,=VeryGood=\nsoft and silky,=VeryGood=\nAlright,=Good=\nObagi,=Good=\nworks great to moisturize,=Good=\nTry any other Anew eye cream....,=Poor=\nDecent Styling Cream...Didn't Like the Smell,=Good=\nI Remain Unimpressed,=Poor=\n\"Not great, especially considering how much it cost!!\",=Poor=\nLiz Claiborne Curve Soul Perfume,=Good=\nNot what I expected but I do like it.,=VeryGood=\nPoor to average quality,=Unsatisfactory=\nFeels like it's a never-ending pot,=Excellent=\nIt works okay,=Good=\nnot great,=Unsatisfactory=\nSo far so good,=VeryGood=\nnot smooth coverage,=Good=\nA Mixed Review,=VeryGood=\nGreat smell but leaves hair weighty,=Good=\nOdd product,=Good=\nWonderful!,=Excellent=\nIt did not work,=Poor=\nbroke me out,=Poor=\nGet it in liquid form,=VeryGood=\nDisappointed in this product,=Unsatisfactory=\nNot so great nail buffer,=Unsatisfactory=\nRegular,=Unsatisfactory=\nGreat for Long or Thick Hair,=Excellent=\nJust a minor complaint,=VeryGood=\nappears to work well,=Excellent=\nGreat oil,=Excellent=\nMakes you a Greasy Orange.,=Poor=\nDOES NOT WORK...,=Unsatisfactory=\nI'm disappointed.,=Unsatisfactory=\nI love it,=Excellent=\namerican crew fiber 1.75oz jar,=Excellent=\nIt Took A Few Attempts to Get On the Right Track...,=VeryGood=\nWhat?,=Unsatisfactory=\nDries quickly but did chip the next day,=VeryGood=\nIt is my perfum for 21 years....,=Excellent=\nIt does its job,=VeryGood=\nNot high quality,=Unsatisfactory=\n\"Doesn't do anything , Aluminum oxide crystals works better, Cheaper.\",=Poor=\nSo-so,=Unsatisfactory=\nworks better than the loop,=VeryGood=\nFinally a solution for the inept. (secret neck trick too),=Excellent=\nStill my fave,=Good=\nst ives cleanser,=Poor=\nSmooths my frizzy hair,=VeryGood=\nOuch!,=Poor=\nNothing like designer skin,=Good=\nPink base,=Unsatisfactory=\n\"Like others, this did NOTHING for shine control.\",=Poor=\nVery gentle shampoo,=Excellent=\nExcellent eye make up remover!,=Excellent=\nIn love :),=Excellent=\nNOT FOR THICK AFRICAN HAIR,=Poor=\nGreat for skin care!,=Excellent=\n\"Prevents Pimples, Does Not Clear Skin\",=Unsatisfactory=\nQuality?,=Good=\nPrincess Pink $518 (Sheer French Manicure),=Good=\nIt's Okay,=Good=\nNot so Good for My skin.....,=Poor=\nI am a Fat night RN,=Excellent=\nDon't like the smell.,=Good=\nSmells so good and works great!,=Excellent=\nI much prefer the 30 volume kit...,=Good=\nblech,=Unsatisfactory=\nDon't have time to heat it up all the time,=Good=\nToo much fragrance!,=Poor=\nDon't buy,=Poor=\nNot for me,=Unsatisfactory=\nReally handy,=Excellent=\nExcellent Setting Powder,=Excellent=\nnon greasy.,=VeryGood=\nnot impressed,=Poor=\nReally Not Impressed,=Poor=\nclairol shimmer shampoo,=Poor=\nCheap and rough..,=Poor=\nLess grit,=VeryGood=\ngreat product very gentle,=VeryGood=\nGreat,=Excellent=\ngreat for my beard,=VeryGood=\nwriting titles is the hardest part of a review,=Excellent=\npretty ok,=VeryGood=\nyes to volumizing,=Poor=\nNice color but does not work that great.,=Good=\nNot such a great mascara.,=Good=\nTHIS PRODUCT SUCKS !,=Poor=\nNo Other Cotton Pad Will Do!,=Excellent=\nSticky,=Good=\nnice,=VeryGood=\n\"Too Bad, Had Great Potential.\",=Unsatisfactory=\nConditioner: Good idea in theory - bad idea in practice,=Good=\nThey Changed the nozzle!,=Poor=\n\"Good for all skin types, even sensitive skin\",=VeryGood=\nso far it works as well as water = no results,=Unsatisfactory=\nRan out in one go,=Unsatisfactory=\nNothing Special,=Unsatisfactory=\nNot much change to see with Vitamin C,=Good=\nNot as good as i hoped...but it gets better.,=VeryGood=\n\"It's Just A Moisturizer, So Don't Expect Miracles\",=Good=\nI believe I got a fake product,=Poor=\nWorks as needed.,=VeryGood=\nNot worth the hype,=Unsatisfactory=\nA Big Mistake,=Poor=\nTiny little tape,=Poor=\n\"I had THREE bottles of this, and sorry, folks ---any \\minimizing\\\"\" comes from the silicone, a purely aesthetic trick\"\"\",=Poor=\nsimple,=Good=\nNot really for short or simple hair,=Good=\nCloudy/foggy; PLEASE NOTE FORMULATION CHANGE IN THIS PRODUCT,=Poor=\neyeshadow,=Unsatisfactory=\nI really wanted to like this product...,=Poor=\nNot worth the $,=Poor=\nCare for Hair,=VeryGood=\nEwww...not a nice smell,=Poor=\nCANT WEAR MORE THEN 1 TIME,=Poor=\nnO GOOD,=Poor=\nnot bad,=Good=\nWill not buy again,=Poor=\nThe Scent,=Unsatisfactory=\nNot my color.,=Poor=\nWorks great,=VeryGood=\n\"Okay, heavily perfumed\",=Poor=\nJust okay,=Good=\nDISAPPOINTED THAT I CAN'T USE THIS PRODUCT,=Unsatisfactory=\n\"Good idea, but not for grays at temple\",=Unsatisfactory=\nQueen Bee Dethroned!,=Poor=\nLove this soap,=VeryGood=\nLove,=Excellent=\nthis product gets the job done,=Good=\nMary Kay,=Good=\nCabots Musk Oil,=Good=\nOK,=Good=\n\"Smells nice, but...\",=Good=\nWorks well,=VeryGood=\n\"dry and scratchy, i may have to heat it ...\",=Poor=\ndon't clean well,=Good=\nIt's okay,=Good=\nA bit disappointed,=Good=\nNot really a concealer,=Unsatisfactory=\nHavent used yet,=Good=\nIts ok,=Good=\nRepeat buyer. Great hand soap. Refill the dispenser with the larger size. Extremely gentle on your skin.,=Excellent=\nLIKED THE COLOR,=VeryGood=\nthese are those tiny clips that are about 3 cm long. picture is deceiving.,=Unsatisfactory=\nits okay....,=Good=\nOlay Regenerist eye lifting serum,=VeryGood=\nAmbi Fade Cream,=Good=\nthis is why I love Amazon real people,=Unsatisfactory=\nnot happy,=Poor=\nActually works,=Excellent=\nNetrogena Pore Refining Toner,=Excellent=\nIt definitely works,=Good=\nBreak out,=Poor=\nNot too bad,=Unsatisfactory=\nNIce,=VeryGood=\nnot a good product at all,=Poor=\nI feel clean afterwards ...,=VeryGood=\nMisleading --Not really Kukui oil,=Unsatisfactory=\nCheap but...,=Poor=\nNice scent,=Excellent=\nDon't bother,=Unsatisfactory=\nMy hair is pleased,=VeryGood=\nWasn't happy with it,=Unsatisfactory=\nI didn't like it.,=Unsatisfactory=\nNot for my skin,=Unsatisfactory=\nDoesn't moisturize my skin very much.,=Unsatisfactory=\nMeh.,=Unsatisfactory=\nGreat lotion,=Good=\nso far so good,=VeryGood=\nWanna love it,=Good=\nNot quite as versatile as Fels Naptha,=VeryGood=\n\"Decent Moisturizer, but Irritates my Face and Eyes\",=Unsatisfactory=\nCheat Mother Nature,=Excellent=\nIt works,=VeryGood=\nkinda crappy,=Unsatisfactory=\nok,=Good=\nMatte Finish and Fine Line Fill,=VeryGood=\nI really wanted to like this product,=Poor=\nSeasonal wear,=VeryGood=\nSmears when used with a brush,=Good=\nmade for LEGS not FACE!,=Poor=\n?? Not sure about this stuff yet,=Unsatisfactory=\nnot worth the trouble,=Poor=\nHARD TO CHANGE BATTERIES,=Poor=\nCareful,=Good=\n\"Not my favourite, but still Burt's Bees Quality\",=VeryGood=\nDoesn't live up to the hype,=Unsatisfactory=\nPregnant belly must-have.,=Excellent=\nTangles Hair,=Good=\nIt's ok,=Good=\n\"Love Essie, Confused About the Color\",=VeryGood=\nI have just experienced a hair disaster.,=Poor=\nPerfect if you have an oily scalp. been using it for years!,=Excellent=\nNice cleanser!,=Excellent=\nI've used this serum for years - it works,=Excellent=\n\"Nice base coat, but not strengthening.\",=VeryGood=\nIt's an OK cleansing oil.,=Good=\nWorks great!!!,=Excellent=\nSaw Some Improvement with Regular Use; Also Added Sheen to Bare Nails,=Good=\nMy Hair Loves It,=VeryGood=\nFeels Chaulky,=Unsatisfactory=\nBurns!,=Poor=\nThe best ONE!,=Excellent=\nNot sure,=Unsatisfactory=\nawesome dryer,=Excellent=\ngreat dryer,=VeryGood=\nbrighter skin,=VeryGood=\nDecent Hardener,=VeryGood=\nAnother waste of money and the fact is that I have ...,=Poor=\nUnimpressed  UPDATE: TERRIBLE!,=Poor=\nAutomatically signed me into an account with proactiv company!,=Poor=\nWhy Doesn't This Work?,=Poor=\nBuy a Sharpie,=Poor=\nNice but not long lasting,=VeryGood=\nNot near as good as the regular gloss,=Good=\nNOT Travel-sized,=VeryGood=\nNot what i thought,=Poor=\nToo small and I don't like the material,=Good=\nSmells yummy,=Good=\nCastor Oil,=Excellent=\ntested on poor animals,=Poor=\nLots of strong bristles,=Excellent=\nAwsome prodcut,=Excellent=\nToo hot!!,=Good=\nNot good,=Unsatisfactory=\n\"Great dryer, don't care for the conditioner\",=Good=\n\"It works, but you have to give it time\",=Good=\nGood for the price,=VeryGood=\nAwesome Shea Butter,=Excellent=\nNot a big help for natural African American hair.,=Good=\nWorks great with the herbal hair products,=VeryGood=\nToo Natural,=Unsatisfactory=\nAn exceptionally nice hairbrush!,=Excellent=\ngive it a try..better than I expected,=Excellent=\nGood but Not Great,=Good=\ngreat,=Excellent=\nUseless,=Good=\nNot worth the money and not so great,=Unsatisfactory=\nNeem face mask,=Unsatisfactory=\nGood Conditioner,=Good=\neh,=Good=\nAffordable eyebrow tinting,=VeryGood=\n\"It made me say  \\WOW.\\\"\"\"\"\",=Excellent=\nAromatherapy,=Excellent=\nLook closer at the 5 star reviews,=Poor=\nBetter Than Expected,=Excellent=\nit's a ok hair product,=Good=\nToxic?!,=Unsatisfactory=\nLOVE this curling iron!,=Excellent=\nEye Lash Accelerator,=Unsatisfactory=\nEyeshadow makeup kit,=Poor=\n\"Worked great, but couldn't handle the scent\",=Unsatisfactory=\nok,=Good=\nTried and tested,=Excellent=\nThis is the first eye cream,=VeryGood=\nMargarite Zince Cream!!!! Smells GOOD now!!!,=Excellent=\nPretty smell,=Unsatisfactory=\nMisleading Description,=Unsatisfactory=\nDon't bother.  Just another junky item.,=Poor=\nWill not repurchase,=Good=\nOverpriced and Underproductive,=Poor=\nTwo Stars,=Unsatisfactory=\nVery expensive product with no results......,=Poor=\nOne star is still too much,=Poor=\nBrush,=Good=\nDrying to my hair,=Unsatisfactory=\nOverheats,=Good=\nGot Dark Spots after 2 uses,=Poor=\nThis is not as bright,=Unsatisfactory=\nonly worked for about 4 months !,=Poor=\nOy Vay!,=Good=\nGreat at eliminating wrinkles,=VeryGood=\nFinally No Hot Metal!,=Excellent=\nMy new holy grail.,=Excellent=\nWell,=VeryGood=\n\"Effective, But Scent (Although Pleasant) Is A Bit Too Pronounced For My Personal Taste\",=Good=\nPretty thin polish,=Unsatisfactory=\nVery thick product with challenging smell,=Good=\nGreat product. Bottle Pump could be better.,=VeryGood=\n\"Want flat, crunch curls?\",=Poor=\nsmells good,=Excellent=\nAlright,=Good=\nA satisfying product,=VeryGood=\nNot worth the price,=Unsatisfactory=\n*** CONTAINS PARABENS ***,=Unsatisfactory=\nRead this before buying!,=VeryGood=\nNot good for oily complexions.,=Poor=\nPrefer over regular eyelash curlers,=VeryGood=\nnot so happy.,=Poor=\nNot a handy device at all!,=Poor=\n\"If you love OPI brand and love pink colors, this is for you.\",=Excellent=\nRe-consider using this if you have ethnic hair...,=Poor=\nWaste of money,=Poor=\ni thought it was a blush but its just sparkles,=Unsatisfactory=\ndid make a difference,=Excellent=\nSoothing,=VeryGood=\nGood product,=Excellent=\nDoes not do much that I can tell,=Poor=\nredness relief lotion,=VeryGood=\nOrdering it again,=VeryGood=\npass this up if your hair can't tolerate cones.,=Poor=\nMakes hair SOFT - but doesn't really control the frizz,=Good=\nDefinitely a GODSEND.,=Excellent=\nTime will tell if hormone balancing is just a claim or a reality - UPDATED 10/8/13,=VeryGood=\nWorks good for me,=Excellent=\nWife did not care for this,=Unsatisfactory=\nNot Coral,=VeryGood=\nLOVE IT!,=Excellent=\nWorks well,=VeryGood=\nReal deal stuff,=Excellent=\ndisappointed,=Unsatisfactory=\nUGLY COLOR..not what expected!!,=Unsatisfactory=\n\"Real thing,\",=Excellent=\nGreat for dry skin!!!,=Excellent=\nnot effective,=Unsatisfactory=\nToo small,=Unsatisfactory=\nGreat affordable flat iron,=VeryGood=\nNot Nearly Hot Enough,=Poor=\nWatery light scent,=Good=\nclumpy,=Unsatisfactory=\nI like to wear this alone,=Good=\nDidn't like because it may be toxic!,=Poor=\nItchy scalp,=Unsatisfactory=\nDisappointed,=Unsatisfactory=\nvery thick...,=Good=\nGreat for fine lines and overall skin appearance,=Excellent=\nNot Impressed,=Unsatisfactory=\ndont bother,=Poor=\nBeen Using it For 25 years,=Excellent=\nNot worth it,=Poor=\nMeh,=Unsatisfactory=\nToo Frustrated!,=Poor=\nNice color,=Good=\nMy Go To Serum,=VeryGood=\nokay,=Good=\nGreat conditioner,=VeryGood=\nworks,=VeryGood=\nJust OK,=Good=\n\"Some moisturizing effect, nothing more...\",=Unsatisfactory=\nBasically OK,=Good=\nBlech!,=Poor=\nDoes wonders,=Excellent=\nFeria Deep Bronze Brown,=VeryGood=\nGreat For African American Skin Tones,=Excellent=\nrun of the mill shampoo,=Unsatisfactory=\nA polarizing scent. I'm on the negative pole.,=Poor=\nIt's okay,=VeryGood=\nineffective,=Unsatisfactory=\nLove the color!!,=VeryGood=\nAverage Vaseline Lotion with Fancy Descriptions,=Unsatisfactory=\nIntroduction to glycolic acid,=VeryGood=\nGreat,=Excellent=\nLove the ingredients ...,=Good=\nGreat to use all over!,=Excellent=\nDONT LIKE IT,=Poor=\nDon't bother,=Poor=\ngreat but didn't last long,=VeryGood=\nGreat headbands,=Excellent=\nOkay spray.,=Good=\nGood For Sensitive Skin But Has a Mild Frangrance,=VeryGood=\n\"Feria, the only box I trust.\",=Excellent=\nNO RINSE PRODUCTS,=Excellent=\nOne Star,=Poor=\nIn the middle,=Good=\nworks great!,=VeryGood=\nIsn't moisturizing enough,=Good=\nDissapointed,=Poor=\nThis is just not a good product,=Unsatisfactory=\nGoregous,=VeryGood=\nRapid Repair by Neutrogena,=Unsatisfactory=\nbest kept secret ever,=Excellent=\nBetter Firming Lotions Out There,=Good=\nNatrual? With petrochemicals and MSG. And it made my hair nasty.,=Unsatisfactory=\nNo too impressed...,=Unsatisfactory=\n\"Lovely scent, gentle, and no rough detergent feel\",=VeryGood=\nNever again will I buy this product!,=Poor=\n\"Leaves hands soft, but strongly scented\",=Good=\nMy Favorite!,=Excellent=\nbuy me!!,=Excellent=\nNOT THE BEST,=Poor=\nDon't like it,=Poor=\nperfect color,=VeryGood=\n\"Works as Promised, But.....\",=Good=\n\"If it burns, stop use IMMEDIATELY\",=Poor=\nSOFT BUT A LITTLE GREASY,=Good=\nBest Eyebrow powder I have found so far.,=VeryGood=\n\"itw as balacka nd I was disappointed, I noyice now they have changed the photo ...\",=Unsatisfactory=\ngood product,=VeryGood=\nNot my favourite.,=Unsatisfactory=\nawfull,=Poor=\n\"This is a winner, great product for natural texture hair\",=Excellent=\nSo far I like it,=VeryGood=\nI don't like the scent of this,=Unsatisfactory=\nNot the real thing.,=Poor=\nHurts to peel off!!,=Poor=\nWell it cleansed my hair...,=Poor=\nGreat cleanser,=Excellent=\ngood color but not as long lasting,=VeryGood=\nThrew it out,=Poor=\nSmells aweful,=Poor=\n\"Scent is nice, but not impressed\",=Good=\nMixed Feelings,=Good=\nGreat Clean Feeling,=VeryGood=\nAmlactin,=Unsatisfactory=\nnot like my old ones but still ok,=Good=\nHardens but has consequences.,=Good=\nFelt great!,=Excellent=\nLash Growth,=VeryGood=\n\"Great item, but sellers need better descriptions.\",=VeryGood=\nLove it,=Excellent=\nAffordable. But A Note of Caution ...,=Poor=\nSmells like poop but it does the job,=VeryGood=\nBe Delicious,=Good=\nthere is better out there............,=Unsatisfactory=\nClinique Quickliner in Moss is what I like for under my eyes,=VeryGood=\nnot what i was looking for,=Good=\nOil of Happiness,=Excellent=\nlooks different in person,=Good=\nTerribly dull!,=Poor=\nGreat,=VeryGood=\nDidn't do much for me and I broke out like crazy.,=Unsatisfactory=\n\"Refreshing and spicy, but not my favorite\",=Good=\nJust okay,=Good=\nDried up fast,=Good=\nWell,=Good=\nFor Professional Only,=Poor=\nCould be Better,=Good=\nIt pulls my hair out,=Poor=\n\"Eh, so-so\",=Good=\n1st its look nice until you used it.,=Poor=\n\"works great, smell great, may be drying for some people\",=VeryGood=\nOKAY BUT NOT ENOUGH,=Good=\nFragrance free means no ADDED fragrance,=Good=\nAveeno Clear Complexion BB Cream,=VeryGood=\nA waste of money,=Poor=\nEssie st. Lucia lilac,=Excellent=\nVery moisturizing,=VeryGood=\nOk lip balm.,=VeryGood=\nBest Brushes on the Market,=Excellent=\noh geez,=Unsatisfactory=\nBuy Philip B Anti Flake Shampoo instead,=Good=\nIt's Good but I prefer my Queen Helen Mint Julep Mask,=VeryGood=\nThree Stars,=Good=\nNo streaking and soft skin,=Good=\nIt was not as expected,=Unsatisfactory=\nI like it,=VeryGood=\nWell worth the money. A great buy!,=Excellent=\nEh....not sure how I feel about this one,=Good=\nVery Moisturising,=VeryGood=\nGreat product for those who are sensitive skin and winter itch...,=VeryGood=\nIts Ok I wouldn't rave about it.,=Good=\nOkay,=Good=\nWorks! But no miracle.,=Excellent=\nNice fragrance; soft hair,=VeryGood=\nThis does not work,=Unsatisfactory=\nAdded subtle highlights on black Asian hair,=VeryGood=\nNot as dark as other products I've used,=Good=\nCute!,=VeryGood=\nOk but don't see what they claim,=Poor=\nWorks great but....,=Unsatisfactory=\nWorks Great!,=Excellent=\n\"Didn't help son's eczema, but I love it\",=VeryGood=\n\"Too small, too flimsy, not worth the price\",=Poor=\nI like these rollers,=VeryGood=\nBuyer Beware!!!,=Poor=\nDoesn't really give me volume,=Unsatisfactory=\nGreat!,=VeryGood=\nNot worth the money,=Poor=\nCould Be Better,=Unsatisfactory=\nNo opaque like the picture.,=Good=\nGreat Product,=Excellent=\nBRUSHES ARE FAKE,=Poor=\nBest cleanser I have used,=VeryGood=\nso so product,=Good=\nPOS,=Poor=\nvery sharp,=VeryGood=\nSusan,=Unsatisfactory=\nPerfume spills inside the box!!!!,=Good=\nNot what is advertised,=Unsatisfactory=\nFried the ends of my hair :(,=Unsatisfactory=\nGreat for dried-out hair,=VeryGood=\nis this infused with itching powder?,=Poor=\n\"Help yourself, don't buy this\",=Poor=\nBUYER BEWARE - BAD ALCHOHOL IN PRODUCT for SENSITIVE SKIN,=Poor=\nSofter Hair,=Excellent=\nAverage Result,=Good=\ngood,=Good=\nMade hyperpigmentation worst,=Poor=\ngreat,=Excellent=\nVery nice for the price,=Excellent=\nBlinc Heated Lash Curler,=Unsatisfactory=\nI'm 80% happy,=VeryGood=\nNot sure about this one?????,=Good=\nWonderful Product,=Excellent=\ndisgusting of all,=Poor=\nFake!,=Poor=\nCarnival,=VeryGood=\nway too harsh,=Unsatisfactory=\nNot a big fan,=Unsatisfactory=\nGreat,=VeryGood=\ngood product BUT LEAKING!,=Poor=\nThis is great for sensitive skin.,=Excellent=\nCrap crap crap,=Poor=\nwonderful,=Excellent=\nPretty Silvery Shade!,=Excellent=\nTightens but still dark circles,=Unsatisfactory=\nWhat a total rook.  So not worth the rediculous cost of this product.,=Poor=\n\"Good cleanser, horrible smell\",=Good=\nStill awaiting results,=Poor=\nDries out VERY fast. Never really sets,=Unsatisfactory=\n\"Wow , and awesome\",=Excellent=\n\"dry, old and clumpy\",=Poor=\n\"Far too light, but glitter spreads evenly\",=Unsatisfactory=\nCauses more hair loss,=Unsatisfactory=\nGreat for allergies!,=Excellent=\nI dont like it...,=Unsatisfactory=\nDon't buy on amazon!,=VeryGood=\n\"Doesn't strip color, but otherwise unremarkable\",=Good=\nGood but not for thick hair,=VeryGood=\nJust OK,=Good=\nDidn't work.,=Unsatisfactory=\nNot as bright as shown,=Good=\nNot nearly as strong as I hoped.,=Unsatisfactory=\nWOW!,=Excellent=\nlike this product so much!,=VeryGood=\nLeaves hair silky!,=Excellent=\nIt's a keeper,=VeryGood=\nPerfect,=Excellent=\n\"Nice and easy fitting system, though a bit uncomfortable\",=VeryGood=\nShampoo & Body Cleanser  Aqua Glycolic,=VeryGood=\nNot good!,=Poor=\nNo big deal,=Poor=\nIT WORKS,=Excellent=\nSmells Great!,=Poor=\ndecent for the price,=Good=\nproduct is defective,=Poor=\ngreat for soft curls,=VeryGood=\nPretty color but nothing like the picture,=Unsatisfactory=\nLeaves Me Bright Eyed,=VeryGood=\nnot sure it works,=Unsatisfactory=\nnice,=VeryGood=\nPretty darn good!,=VeryGood=\nNasty smelling shampoo!,=Poor=\nshea moisture coconut&hibiscus curl*style didn't work for me,=Unsatisfactory=\nHorrid Smell,=Unsatisfactory=\nGood stuff,=Excellent=\n\"Used for a week, hello acne!\",=Unsatisfactory=\nJust so so,=Unsatisfactory=\nDont Do IT,=Poor=\n\"Padded reviews - bunch of \\one-time/five-star\\\"\" reviews\"\"\",=Poor=\nNot bad! Will double as lip stain too,=VeryGood=\ngood for brow gel,=Good=\nZero Stars!!!!,=Poor=\nBest hair brushing brush I've found,=Excellent=\nGood product,=VeryGood=\nnice. scents the house.,=VeryGood=\nToo smelly,=Good=\n\"Where's the mascara, indeed!\",=Poor=\nGreat on short hair,=Excellent=\nDecent product,=VeryGood=\n\"Very nice,very moisturizing\",=VeryGood=\nDecent conditioner for short hair,=Good=\nCurticle cutter was dull,=Good=\nradiance eye cream,=Unsatisfactory=\nIt stings,=Good=\nFresh and wholesome,=Excellent=\nok i guess,=Good=\nDon't think it works,=Poor=\nFine but not wonderful,=Good=\nPoor customer service from this vendor.,=Poor=\nToo heavy and green for my skin,=Good=\nNice product but does not stretch out,=Good=\nNot what I was expecting.,=Poor=\n2.5 % doesn't do it for me. Like the wash and lotion.,=Good=\nAbysmal,=Poor=\ngood weekly protein treatment for fine/thin hair that needs more protein than thicker hair,=VeryGood=\nEh ok,=Unsatisfactory=\nThe Best,=Excellent=\nBroken,=Unsatisfactory=\nShedding after 1 week,=Poor=\nNot my color,=Poor=\n\"Nice, gentle cleanser, but a bit watery\",=VeryGood=\nEyebrow kit,=Unsatisfactory=\nCheap but hard to work with,=Poor=\nBest cleanser i used so far,=Excellent=\nJust not worth the money,=Unsatisfactory=\nSticky & strong alcohol smell,=Poor=\nShears,=VeryGood=\nI Am Not Very Impressed,=Unsatisfactory=\nToo long!,=Unsatisfactory=\nOne of the best!,=Excellent=\n\"The Jury is Still Out, but So Far So Good\",=VeryGood=\nsmells okay not so cleaning,=Unsatisfactory=\nI like it,=VeryGood=\n\"Cindy Crawford pictures, say it all\",=Poor=\n\"Inexpensive alternative with a long-lasting, light scent\",=Excellent=\nVery thick and not easily absorbed,=Unsatisfactory=\nHorrible!!!!,=Poor=\n\"Worked good, not heavy, but bad attachments!!!\",=Good=\nthick har,=Good=\nMade my skin a little dry,=Good=\nIt's ok,=Good=\nWasn't Nourishing at all  !!!!!,=Poor=\nIt's okay.,=Good=\nNot the best probiotic powder,=Good=\nIngredients listed under Product Description are incorrect,=Poor=\nOk,=Good=\nA little disappointed ....,=Good=\nLove the smell of this soap,=VeryGood=\nIt's a NO go for me,=Poor=\nPureology,=Excellent=\nAnother Curve scent!!,=VeryGood=\nUsually use the original formula but gave this a try,=Unsatisfactory=\nExtremely Clumpy and Dries Out,=Unsatisfactory=\nI enjoy a fun looking french manicure...,=VeryGood=\nI don't get it,=Poor=\nDoesn't work on my fine hair,=Good=\neasy to use,=Good=\nThis is a Tangler,=Poor=\nLove it,=Excellent=\nReview,=Poor=\nLots of compliments,=Excellent=\nThree and a half stars,=Good=\nGood crayon,=VeryGood=\nTHE BEST!,=Excellent=\nStrong perfume smell and too thick for me,=Unsatisfactory=\nShorter than I expected,=Good=\nwasn't the same product,=Poor=\nGreat orange to keep in your collection,=VeryGood=\nReddish Tone,=Good=\nlike it,=VeryGood=\nThe only wash I've used for the last 2 years.,=Excellent=\nLove it,=Excellent=\nIt is ok but not my fav.,=Good=\n\"Nice, quality sponge, no miracles of course\",=VeryGood=\nnot what i was looking for but its a good flat iron,=VeryGood=\nNot hot enough for 4A/B Natural hair.,=Unsatisfactory=\nBest Shampoo,=Excellent=\nDid not work!,=Poor=\nNearly as many uses as vinegar,=Excellent=\nIts ok,=Unsatisfactory=\nNot a Good Product,=Unsatisfactory=\nUGH,=Unsatisfactory=\nGood product with several drawbacks.,=Good=\nCheap Tool,=Unsatisfactory=\nBest color for my hair!,=Excellent=\nGreat facial steamer but the steam arm needs more adjustments,=Good=\n\"It's not You, It's me.\",=Poor=\nGreat for your skin!,=Excellent=\nEssie Missed On This One,=Poor=\nI really like this moisturizer.,=VeryGood=\nIt works,=VeryGood=\nok,=Good=\n\"Good oil, but not for my skin\",=Good=\nsmells nice,=Good=\nCotton Candy Body Spray,=Good=\nArdell brow/lash growth product,=VeryGood=\nOk - but be careful with seasons,=Good=\nNot impressed,=Unsatisfactory=\nClears all of the chlorine & gook from products out of your hair,=Excellent=\nGentle and effective.,=Excellent=\nPretty,=Excellent=\nNIVEA BODY WASH,=Poor=\n\"I really wanted to love this, but BLONDES be forewarned: this WILL stain your hair and turn it PINK...and it is $$$!!!!\",=Unsatisfactory=\nnight cream,=Excellent=\ndoes NOT work :'(,=Unsatisfactory=\nBeautiful Color... That doesn't last,=Good=\n\"I guess it's good, by other reviews\",=Unsatisfactory=\nNylon Tipped Paddle Brush,=Excellent=\nThe search continues...,=Poor=\nNot impressed,=Poor=\nI don't like it,=Poor=\nBest value for an all purpose crazy glue!,=Excellent=\nExcellent Shampoooooo,=Excellent=\nLike it,=Unsatisfactory=\nGREAT FOR WOMEN OF COLOR ALSO,=VeryGood=\nLike for scaly scalp,=Excellent=\nBRING IT BACK AMAZON,=Excellent=\nI use as concealer,=VeryGood=\nHighly scented which could be a good or bad thing.,=VeryGood=\ncakes,=Poor=\n\"Value, gentle, but actually cleans\",=Excellent=\nsmells more like fly spray,=Poor=\nLove it!,=Excellent=\nNot great quality,=Poor=\nClincher comb,=Poor=\nDoes not adhere to foundation well,=Unsatisfactory=\n2nd time,=VeryGood=\nNot a big fan of the scent.,=Good=\nNot as great as reviews implied,=Good=\nLIfted my color with minimal damage,=VeryGood=\ndesert essence nourishing cleanser,=Poor=\nLife Changing,=Excellent=\nColor is very uneven,=Poor=\nface,=Good=\n\"Really good, recommended even\",=VeryGood=\n\"Light, Nice Color, Non-Greasy\",=VeryGood=\nGreat toner,=Excellent=\nMY FAVORITE,=Excellent=\nLoved the sample.,=Good=\nPROMISES PROMISES,=Unsatisfactory=\nWorks great!,=Excellent=\nUse every day,=VeryGood=\nVery good,=VeryGood=\nGreat Alternative to Mascara,=Excellent=\nAvoid This - Contains Retinyl Palminate!,=Poor=\npt,=Poor=\nNo Results.,=Poor=\nFuse blew,=Poor=\nway too greasy to use on my face or anyone's face,=Poor=\nExcellent service. So so product.,=Good=\nfalling apart...,=Unsatisfactory=\nIt is not Universal,=Good=\nSmells great and awesome price!,=VeryGood=\nNice but not frothy!,=Good=\nSmells so good,=Excellent=\nNice oil,=Unsatisfactory=\nLovely Eyes,=VeryGood=\nGreat curling iron!,=Excellent=\nMoisturizes well,=VeryGood=\n\"Powerful and effective, but not gentle\",=VeryGood=\nThree Stars,=Good=\nIt's okay,=Unsatisfactory=\nToo much of good thing can be bad,=Unsatisfactory=\nThis Works Ok,=Good=\n\"The \\miracle beauy product\\\"\"\"\"\",=VeryGood=\nWeird stuff,=Unsatisfactory=\nNice product,=VeryGood=\nNot crazy about it...,=Unsatisfactory=\nNot like they used to be...,=Unsatisfactory=\nMakes my hair soft and light,=VeryGood=\nI dont't know if it works,=Good=\namazing stuff with an excellent shipping,=Excellent=\nDoes Not Work For Me,=Unsatisfactory=\nTossed,=Poor=\nAsh blonde- but be careful!,=VeryGood=\nThe Brush,=Good=\nLindo color,=VeryGood=\nNot worth the money.,=Poor=\nnot worth dissapointing,=Unsatisfactory=\n\"Eh, not my favorite\",=Unsatisfactory=\nStrikes a perfect balance of hydration and protection for me,=Excellent=\nMicrodelivery Peel Pads,=Excellent=\nDo NOT buy - GRAY/WHITE color comes out of container -- not brunette,=Poor=\nBeware it will turn your highlights red!!! (and your hands and shower floor),=Good=\nMinimal Reduction,=VeryGood=\nNot at All What I Expected,=Poor=\nfixed my poor hair,=Excellent=\nDecent microdermabrasion,=VeryGood=\nDidn't notice any difference,=Poor=\n\"Not impressed, misled by such great reviews\",=Good=\nopi strawberry margarita,=VeryGood=\nTurned my nails yellow,=Poor=\nI've had better,=Good=\nJust ok...,=Good=\nAnother Nice Color,=VeryGood=\nFixed by thumb-sucker in two applications,=Excellent=\nHand Cream HG,=Excellent=\nFrustrating,=Poor=\nWorks great if you stick to the plan,=Excellent=\nGot a completely different color than I ordered,=Good=\nDon't like it at all.,=Poor=\nFirst Impression,=VeryGood=\nObsessed,=Excellent=\nWorks great!,=Excellent=\nJunk,=Poor=\nNot so good,=Unsatisfactory=\nPretty good stuff!!,=Excellent=\nWorks for me!!,=Excellent=\nso sad,=Poor=\nPUREST SOAP EVER!,=Excellent=\nCURLY THICK HAIR,=Excellent=\nThis conditioner is the best detangler ever!,=Excellent=\nWish it had worked!,=Poor=\nCurls don't relax,=Excellent=\ngreat stuff,=Excellent=\n\"Very Subtle and Pleasing, but not for everyone\",=VeryGood=\nSmall but POWERFUL!!,=Excellent=\nNice matte deep red color!,=Good=\n\"Sorry guys, this one is a fake. You can see why in my link below\",=Poor=\nN-O-T  W-O-R-T-H  T-H-E  M-O-N-E-Y,=Unsatisfactory=\nHated this,=Poor=\nDon't buy unless you want acne!,=Poor=\nGreat Product.,=Excellent=\nDisappointed,=Poor=\nBroke My Skin Out!,=Unsatisfactory=\nMy Review Forced Them to Finally List The Ingredients - An Actual Natural Soap Better Than This [ C. BOOTH DERMA],=Poor=\nNot very comfy,=Poor=\nbest treat for clear and radiant skin,=Excellent=\nFinely found something that works!,=VeryGood=\nDenman Delivers,=Excellent=\nnot that great,=Unsatisfactory=\nBest Shampoo Ever!,=Excellent=\n\"Effectiveness did vary with skin tone,  Nice and light.\",=VeryGood=\nI liked the way it smelled.. IN the bottle.,=Poor=\nA SOPHISTICATED ORIENTAL FRAGRANCE,=VeryGood=\nLove it!,=Excellent=\nLeaked :/,=Unsatisfactory=\nRight color,=Good=\nof all the freeman masks...,=Good=\nBirthday gift for Zum lover,=VeryGood=\njo jo baltimore,=Excellent=\nNot great,=Unsatisfactory=\nCompletely dry and hard product,=Poor=\nlotion,=Unsatisfactory=\nThis product contains a blend of many different oils,=Poor=\nbetter than high end products imo,=Excellent=\nRefreshing lotion,=VeryGood=\nIsn't Really Your Typical Mask,=Unsatisfactory=\nNo.,=Poor=\ndon't waste your money,=Poor=\nJust as decribed!,=Excellent=\nAveda Pure Abundance Volumizing Shampoo,=Good=\nI won't buy again,=Unsatisfactory=\nIts ok,=VeryGood=\npretty good,=Good=\nDelightful,=Excellent=\nReview for the Generics!,=Excellent=\nWorks well,=VeryGood=\nOkay product...,=Good=\nPass on this,=Good=\n\"Heavy, Oddly Chemical Smell\",=Unsatisfactory=\nDoes nothing,=Poor=\nThis stuff sucks,=Poor=\nIt helps dry my hair but also makes my hair stiff,=Good=\nNot impressed,=Poor=\n\"Works well, but very thick\",=VeryGood=\nStinky!,=Unsatisfactory=\nCreamy,=Unsatisfactory=\nIndifferent,=VeryGood=\n\"Okay, but I wouldn't buy it again\",=Good=\nLOVE,=Excellent=\nDidnt work,=Unsatisfactory=\nWill never purchase again!,=Poor=\nLove this soap,=Excellent=\n\"the right idea, not quite the right formula\",=VeryGood=\nA Wee Bit STRONG!,=VeryGood=\nnot happy,=Poor=\ncaused a reaction,=Poor=\nNot what it says.,=Poor=\n\"Horrible, pulls out your Lashes  even with eyemakeup remover\",=Poor=\nYUCK!,=Poor=\nIT DOES BURN BUT I HAVE NOT PEELED,=Poor=\nNot bad,=VeryGood=\nNice hair dryer!,=Excellent=\nBurns My Skin and Eyes!,=Poor=\nGlue sorry wrote this review under my hubby's account,=Unsatisfactory=\nTrash Can Fodder,=Poor=\n\"I'm embarassed to say that I fell for the hype, too.\",=Poor=\ngreat item!,=Excellent=\nNope,=Poor=\nI will never look back,=Excellent=\nTo dark,=Poor=\nDoes what it promises,=Good=\nugg,=Poor=\nNot for my oily acne skin,=Good=\nso unhelpful,=Poor=\nAlready saw an improvement,=Excellent=\nFake,=Poor=\nJust didn't work for me,=Unsatisfactory=\nToo Watery & Scent Not Strong Enough to Smell,=Unsatisfactory=\n\"LOVE IT, LOVE IT, LOVE IT!!\",=Excellent=\nVery thick,=Good=\n\"Minimal Damage dye HIGHLY DAMAGING \\refresher\\\"\"\"\"\",=Good=\n\"Love Anew, but not impressed with the cleanser\",=Unsatisfactory=\nTiny Treasure in a Wooden Container!,=Excellent=\nNot loving it for dry hair,=Unsatisfactory=\nDoes great job,=VeryGood=\n\"PLEASE DO NOT USE THIS, SAVE YOUR SKIN.\",=Poor=\nLove it,=Excellent=\nSeems to Strengthen and leave less frayed ends,=VeryGood=\nJust go for a cucumber or plain white bar instead,=Unsatisfactory=\nIs it real?,=Unsatisfactory=\nCan't figure this one out,=Poor=\nTry this to  hold color when doing tie-dye!,=Excellent=\nbarely visible,=Poor=\nOk...,=Good=\nits ok,=Good=\n\"ok, nothing special\",=Good=\nFavourite Curling Iron,=Excellent=\nNOT RECOMMENDED FOR AFRO-AMERICAN HAIR,=Poor=\n\"Strong color, shatter feature nonexistent\",=Poor=\nGood top coat but not 3 free and not glossy enough,=Good=\nThis smells amazing!,=Excellent=\nvery strong,=VeryGood=\nSmells Horrible,=Poor=\nHeavenly,=VeryGood=\n\"Not hydrating or soothing enough for dry, sensitive skin\",=Unsatisfactory=\nCheaply made,=Poor=\nLike it but it caused acne,=Good=\nNude attitude,=Unsatisfactory=\nGood purchase for a non-heavy use dryer,=Good=\nSo far so good!,=VeryGood=\npackaged poorly,=VeryGood=\nA Very Good Blush to Pair with bareMinerals Foundation,=VeryGood=\nAverage,=Good=\nRead my review and you decide if you want to purchase this product,=Poor=\n\"Pricey, but you will notice a difference\",=Good=\nLove this scent!,=Excellent=\nPeter Thomas roth,=Excellent=\nOk,=Good=\nQuality you can expect from Murad!,=VeryGood=\n\"Good mascara, not in love with the brush\",=VeryGood=\nStudying or Working Out ... Don't Do It!,=Poor=\nOne of my favroites,=VeryGood=\nLip... meh?,=Good=\nNice concept...,=Good=\n\"So far, no postive results\",=Unsatisfactory=\nThree Stars,=Good=\nWARNING: may cause wrinkles and burning sensation,=Poor=\nnot that great.,=Unsatisfactory=\nJust ok,=Good=\nGreat for tans,=VeryGood=\nLove it!,=VeryGood=\nAbsolutely useless,=Poor=\nImpressive results lightening darkened skin spots after just a few weeks of use!,=Excellent=\nEhh,=Good=\nNot bad,=Good=\nLike the older stuff better.,=Unsatisfactory=\nExtremely Over Priced Bath Rag,=Unsatisfactory=\nWonderful,=Excellent=\nPass,=Poor=\nGood product.,=VeryGood=\nlike water,=Unsatisfactory=\nGreat stuff!,=VeryGood=\ngood,=VeryGood=\nSee the Neutragena above,=VeryGood=\nGreat hand soap,=Excellent=\nGood moisture!,=Excellent=\nTerrific natural hair color,=Excellent=\nhighly disapointed,=Poor=\nLove it,=Excellent=\nBetter than Coconut,=Excellent=\nCovers well but product is thicker than I expected,=Good=\n\"If this were a curl enhancer, I'd give it 10 stars\",=Poor=\n\"I bought this and the serum, but feel like it was money wasted\",=Poor=\nWorks well but toxic,=Unsatisfactory=\nRedken Smooth Down Heat,=Excellent=\nThe best tool to straighten my very thick and frizzy hair.,=Excellent=\nWonderful for skin care,=VeryGood=\n\"Smells good, but it doesn't last at all\",=Unsatisfactory=\nToo much menthol,=Good=\nFinally something that worked,=Excellent=\nBrow sealer,=VeryGood=\nWish it would get a little hotter,=Poor=\nDisappointed,=Unsatisfactory=\nSubstandard Cleanser,=Poor=\nNO MORE BOTTLES AND TUBES,=Excellent=\nsay goodbye this seller,=Poor=\nI don't really like it,=Unsatisfactory=\ncolors aren't great,=Good=\nWorks well and not oily,=VeryGood=\nOPI RED,=Excellent=\nHate every color,=Poor=\nNot for me...,=Poor=\nIt burns!,=Unsatisfactory=\nHEADS UP! Philosophy sold out,=Poor=\nWhat's Your Hair Worth?,=VeryGood=\nColor is more pink than nude.  Greasy = cheek zits!,=Unsatisfactory=\nWorse than better,=Poor=\nDid not do what I expected,=Good=\nGreat! Wish it lightened even more,=VeryGood=\nit works,=VeryGood=\nQuick and easy,=Excellent=\nremoves yellow tone,=VeryGood=\n\"FOR HEAVY, THICK HAIR AND NON-SENSITIVE SCALPS\",=Excellent=\n\"OK moisturiser, but does nothing for the nails\",=Good=\n\"One for me, and one for my mom\",=VeryGood=\nNice nude polish but...,=Good=\nFine but not worth the money,=Good=\nDON'T USE IT ON WET HAIR,=VeryGood=\nShake Before Using... (But Still Nowhere Near Their Best),=Unsatisfactory=\nI had trouble with this,=Unsatisfactory=\nTo bulky,=Unsatisfactory=\nBE CAREFUL IF YOU'RE TAKING STATIN MEDICATION!!!,=Good=\nLove,=Excellent=\nlove this towel,=Excellent=\nLove the color...,=Excellent=\nNot sure,=Good=\nwhite residue on face,=Good=\nNot crazy about this,=Unsatisfactory=\nDark Brown Eyebrow Tint,=VeryGood=\nGreat for dry skin,=Excellent=\nLike the Mineral Renewal,=Good=\nA Dryer and Hair Conditioner Into One,=Good=\nChemically Smell,=Good=\nHydrating,=Good=\n\"Eh, it's ok but I wouldn't re-order\",=Good=\nDisappointed,=Unsatisfactory=\nWish I Could Give More Stars,=Excellent=\nWorks for Me,=Excellent=\nPerfect for every other day,=VeryGood=\nA little greasy,=Good=\nStrong fragrance,=Good=\nGreat size for the price but leaves hair weighed down,=Good=\nGood... Not a strong,=Good=\nlike it,=VeryGood=\nSoothing night cream,=Excellent=\ndon't waste your money.,=Poor=\nAwesome product!,=Excellent=\nvery nice,=Unsatisfactory=\n\"So far, so good!\",=VeryGood=\nLeaves Hair DRY!? Promises To add moisture?!,=Poor=\nBought because of great reviews but didn't work for me,=Poor=\nSaw some growth but thats it,=Good=\nYou Have to Learn to Work With It,=Good=\nNot the best Egyptian Magic Cream I have ever tried,=Good=\nGreat boar brush,=Excellent=\nMixing the product is annoying,=Good=\nI just hate the way they leave my skin feeling like it ...,=Poor=\nYay!,=Excellent=\nColor runs,=Good=\nSMOOTH OPERATOR!!!,=Excellent=\nNot so pigmented,=Good=\nNot parfum its a spray alright,=Poor=\nGood for beachy and casual look,=Good=\nDont buy,=Unsatisfactory=\nLove this product and this scent,=Excellent=\nLeaves Your Face Very Soft,=VeryGood=\nLong Time Customer... No more!,=Poor=\nNice product that helps to hide my ridges,=VeryGood=\nIt does a good job of removing my makeup,=Good=\nFeels Cheap,=Poor=\nTotal waste,=Poor=\n\"Call It What It Is, Please\",=Unsatisfactory=\nWould like to throw it in the trash,=Poor=\nblah,=Poor=\ndoes what its supposed to,=VeryGood=\nStill working well,=VeryGood=\nGreasy and a bit ghostly,=Unsatisfactory=\nLove alba products,=Excellent=\nLOVE it....,=Excellent=\nGot rid of black heads and large pores!!,=VeryGood=\nDon't Bother!!!,=Poor=\nGave me a sunburn,=Poor=\nNot All That,=Good=\nIts good,=VeryGood=\nLike washing your face with a rock,=Unsatisfactory=\nGrease-A-Lot,=Unsatisfactory=\n\"WOW, you can see a differance!\",=VeryGood=\nNothing great,=Unsatisfactory=\nMade my skin burn and has a horrible chemical smell,=Poor=\nDisappointed,=Unsatisfactory=\nDisappointing,=Unsatisfactory=\nOMG!!!,=Excellent=\nok,=Good=\nTerrible,=Poor=\n\"Better, But Not Painless\",=VeryGood=\nmountain ocian skin trip moisturizer,=Excellent=\nThe product gave me a rash,=Unsatisfactory=\nSimply Amazing,=Excellent=\n3 stars,=Good=\nnot for me i guess,=Unsatisfactory=\nAvene extremely gentle cleanser for sensitive and irritated skin,=Poor=\n\"Not bad, especially for the price!\",=Excellent=\nGood product!,=Excellent=\nHorrible tasting snake oil,=Poor=\nLuxurious feel,=Excellent=\n\"Okay hair color, quick processing\",=Good=\nDisappointed,=Unsatisfactory=\nHuh? How does this thing curl?,=Poor=\nA Sun Kiss,=Excellent=\nsuch a great find!,=VeryGood=\nSmells heavenly,=Excellent=\nface powder,=VeryGood=\nNatural soap--I really like it,=VeryGood=\nBottle is a dud!,=Unsatisfactory=\nKeeps skin soft,=VeryGood=\nCan't really say,=Good=\nFACE MAKEUP,=Good=\nCute,=Unsatisfactory=\nDisappointed in Dove!,=Poor=\nJust buy some tennis balls,=Poor=\nEhh...,=Unsatisfactory=\nI don't like the feel as much as other products,=Good=\nWay too strong and drying,=Unsatisfactory=\nHands down the best I've ever tried,=Excellent=\nWatered down nursery home scent,=Poor=\nNot what I was looking for,=Good=\nFresh and light,=Excellent=\nIt's ok,=Good=\n\"OK product, better out there.\",=Good=\ngreat light serum,=Excellent=\nGreat toner!,=Excellent=\nNice,=VeryGood=\neh,=Poor=\nExcellent Product,=Excellent=\nBlack - Won't buy this one again...it chips off,=Unsatisfactory=\nDidn't work for me!,=Unsatisfactory=\nNot bad,=Good=\nBeautiful Color,=Excellent=\nLike this product,=VeryGood=\nNOT Very Thickening at All,=Unsatisfactory=\nComplete BULL,=Poor=\nWorks for me,=VeryGood=\nhavnt use it yet,=Good=\nMakes my hair really soft,=VeryGood=\nGreat for dry sensitive skin!,=Excellent=\nTHIS REALLY WORKS,=Excellent=\nFrizz Control =],=VeryGood=\nHad to get back to this cream..again,=Excellent=\n\"Musky and Distinctive, Decent Cologne\",=VeryGood=\nNo volume,=Poor=\nnot what i expected,=Good=\nugh,=Unsatisfactory=\nMakes my eyes burn,=Poor=\nScent overpowering,=Good=\nIt's okay but hasn't done much more than other face masks have done for me,=Good=\nDon't like it as much as much as other products,=Unsatisfactory=\nAbout as effective as using my hand to brush my hair,=Poor=\n\"Dries slowly, not shiny, changed my nail polish color\",=Good=\nDoesn't work for me!,=Unsatisfactory=\n\"Not all that \\super\\\"\"\"\"\",=Good=\nI had such high hopes for this,=Poor=\n\"sheer, light coverage, but not very moisturizing\",=VeryGood=\nSTINKY WIG!!!,=Poor=\nOuuuuch.,=Poor=\ntreatment could be stronger,=Good=\nNo noticable improvement at all,=Poor=\nUgh...Not what I expected...,=Good=\nThis is a great everyday cleanser!,=Excellent=\nVery impressed,=Excellent=\nGorgeous,=Excellent=\nDoesn't Last,=Unsatisfactory=\nnothing,=Poor=\nNot recommended for oily or acne-prone skin types,=Unsatisfactory=\nSticks to head- no visible difference,=Unsatisfactory=\nWas what I needed,=Good=\nWonderful astringent,=Excellent=\n\"Of the two new facial cleansers from Neutrogena, this one is my favorite\",=VeryGood=\nirritated my skin,=Unsatisfactory=\ndisappointing,=Poor=\nThe bigger stamper works horribly and just gets a scatter of the design.,=Poor=\nSeems to work,=Excellent=\nan essential item if you know how to use to correctly,=Excellent=\nNo results seen,=Unsatisfactory=\nNot good,=Poor=\nGreat,=Excellent=\nAwful,=Poor=\n\"Eh, it's hair spray\",=Good=\nToo $$$ but after Five+ Years still Good,=VeryGood=\nI HAVE NOT USED YET....,=Good=\nPurple is not even close to being purple,=Good=\nNot a Silk Sponge,=Unsatisfactory=\nBe careful...,=Good=\nPerfect 10 is the Worst!!!!!!!!,=Poor=\nhmmm,=Poor=\nDisappointed,=Unsatisfactory=\nlicensed cosmetologists review,=Good=\ndoes what it is supposed to do,=Excellent=\nNot worth it!,=Poor=\n\"Good, but Not Great\",=Good=\nGreat Lotion - Overpowering Scent,=VeryGood=\nBelieve the Hype!!!,=Excellent=\nDid not like!,=Poor=\nL'Oreal Paris Pen,=Poor=\nGood hairspray,=VeryGood=\nGreat Mist!,=Excellent=\nMeh. . .,=Unsatisfactory=\nWorks fine,=VeryGood=\nGood overall.,=VeryGood=\nTRANSPARENT GEL- LIKE GORGEOUS POLISH,=Excellent=\ngave this up,=VeryGood=\nit's ok,=Good=\nIt is different than my ones from years prior...They changed the brush!,=Unsatisfactory=\nworks as advertised,=VeryGood=\n\"I'll use the pack I bought, but won't buy again!\",=Good=\nSomewhat Disappointed,=Unsatisfactory=\nWrinkles every time! Ugg!,=Poor=\nThe anticipation of its arrival in the mail proved to be more exciting than its results...Bummer !,=Poor=\nDoes it work?,=Good=\nStill thinking about this one,=Good=\ngorgeous !,=Excellent=\na bit pricey,=Good=\ndisappointed,=Poor=\nWitch Hazel is an irritant,=Unsatisfactory=\nDon't really understand the purpose?,=Good=\nA little disappointed,=Good=\nNo difference at all,=Poor=\nDisappointed,=Unsatisfactory=\nWorst conditioner,=Poor=\nChanging Review - Bad Basecoat,=Poor=\nGood deal for the money,=Good=\n\"Functional with the brush, but wrong color\",=Unsatisfactory=\nNot sure about the fuss,=Good=\nCalming Oatmeal,=Excellent=\nWorks Well and Does Protect Sensitive Skin,=VeryGood=\nThis Stuff Is Fabulous. Fabulous. Fabulous.,=Excellent=\nsoft skin,=VeryGood=\nnice,=VeryGood=\nGood Stuff!,=Excellent=\n\"Okay to use up over time, but I'll buy differently next time.\",=Good=\nslow,=Unsatisfactory=\nokay product,=Good=\nwonderful,=Excellent=\nAffordable clean smelling fragrance.,=VeryGood=\nnot good,=Unsatisfactory=\nWorks well with a little practice!,=VeryGood=\n\"very moisturizing, but heavy perfume\",=Good=\nwont buy it again,=Unsatisfactory=\nGood place to buy this product,=VeryGood=\nWall mount mirror.,=Excellent=\nI hate this!,=Poor=\nlittle moisture/not high quality like its price,=Unsatisfactory=\nDangerous because transparent,=Poor=\nGot acne? Try this.,=VeryGood=\nBurnt Skin,=Poor=\nNot for me,=Poor=\nOk.,=Good=\n\"Fast absorbing, non sticky\",=VeryGood=\nDon't buy this. Waste of money.,=Poor=\nGreat product depending on your hair type...,=VeryGood=\nit works,=VeryGood=\nWho Stole All of My Scruby Bits?,=Unsatisfactory=\n\"I bought it for the \\pouf!\\\"\"\"\"\",=VeryGood=\nGreat product,=Excellent=\nNew favorite,=Excellent=\nBeautiful color!,=Excellent=\nLeaves marks on lids,=Poor=\nWorks well..,=VeryGood=\nAZO yeast pills,=Good=\nWorks great if you use Mineral conealer for your eyes,=Good=\nDon't like it,=Poor=\nContains FRAGRANCE,=Good=\nNo need to use a lot,=VeryGood=\nGOTTA HAVE IT!!,=Excellent=\nbought based on reviews and regretted it,=Poor=\nOriginal vs Ultra vs Kose,=VeryGood=\nBest Astringent Ever!,=Excellent=\nI love this product,=Excellent=\nCleans well but too strong for sensitive skin,=Unsatisfactory=\nI don't think this is right.,=Good=\nwhite hair,=VeryGood=\nit gets hot,=Good=\nLike it...,=Good=\nI've noticed a difference!,=Excellent=\nheadache alert,=Unsatisfactory=\nNOT WORTH IT,=Poor=\nSmells Great!,=Unsatisfactory=\nOLAY HORRAY,=Excellent=\nit looks powdery,=Poor=\nThree Stars,=Good=\nAn OK product,=Good=\ntoo matte.,=Unsatisfactory=\n\"It works, stay hydrated\",=VeryGood=\nCheap packaging~Foundation Alright,=Poor=\nGood Creme Conditioner to Help with 4B/C Hair Breakage,=VeryGood=\nMiracle of Aloe Hand Repair Cream,=VeryGood=\nAMAZING STUFF,=Excellent=\n\"Fantastic Smell, Almost Like Doing Aromatherapy When You Shampoo!\",=Excellent=\nIt works but....,=VeryGood=\nWill get the job done but it is better suited for someone with short hair,=VeryGood=\nNot moisturizing enough for me.,=Unsatisfactory=\nVery Satisfied,=Excellent=\nWorks very well.,=Excellent=\nMy favorite hair straightener of all time!,=Excellent=\nNice color and price but prone to creasing/smearing,=Good=\nGood and thick,=Excellent=\nI'm amazed and I consider myself seasoned with peels.,=Excellent=\nI dont see no significant difference.,=Good=\nNot happy!,=Unsatisfactory=\nQutre Quick Weave synthetic halfwig,=Unsatisfactory=\ndidnt work,=Unsatisfactory=\nMy Fave,=Excellent=\nMixed opinion,=Good=\nReturned,=Poor=\nuse it on my daughter,=Good=\ntoo rough,=Poor=\nGood moisturising cream,=Good=\nNot bad,=Good=\nUnsure,=Good=\nGood ol' standby,=Excellent=\n11 going on 20,=VeryGood=\nA moisturizer that doesn't feel greasy.,=Excellent=\n\"not worth it, save your money\",=Poor=\nBig huge bottle of lotion,=Good=\n\"Gentle, Moisturizing, Effective\",=Excellent=\n\"I like the mascara, not the brush\",=Good=\nI like the dry down of it.,=VeryGood=\nNO,=Unsatisfactory=\n\"Gentle on skin, but strange looking on some hues of skin\",=Good=\ndidn't help with my cystic acne :(,=Unsatisfactory=\nToo Small,=VeryGood=\nWell humm,=Unsatisfactory=\nNot bad,=Good=\nStill does not work,=Poor=\nCreamy.,=Excellent=\nInstant Heat Hot Brush,=Excellent=\nit SMELLS really bad..,=Poor=\nAlpha Hydrox,=Excellent=\nTHIS REALLY WORKS!,=Excellent=\nIt does work!,=Excellent=\nGreat product,=Excellent=\nWe like this soap,=Excellent=\nNot what I expected!,=Poor=\nLove It!,=VeryGood=\n\"IF they stick, theyre nightmarishly painful to remove - Buy your own paper tape and customize yourself\",=Poor=\nGreat Product,=Excellent=\nGreat product,=Excellent=\nFive Stars,=Excellent=\nA Wonderful Body Wash,=VeryGood=\nMaybe it's just me,=Unsatisfactory=\nConsistently 25-50 degrees less then it is set for,=Poor=\ngreat for dry skin,=Excellent=\n\"These are pretty, but they're not as nice as the white ...\",=Good=\nJust in Time for Easter,=Excellent=\nToo much build up and hair losses body,=Unsatisfactory=\nIts not what I wanted,=Unsatisfactory=\nMy hair loves this stuff!,=Excellent=\nAcne gel,=VeryGood=\n\"It's conditioner, no more no less\",=Good=\nNeeds Practice,=VeryGood=\nNot so swift!,=Unsatisfactory=\nMakes my skin painfully dry,=Unsatisfactory=\nDifficult to use,=Unsatisfactory=\nnot so great,=Good=\nSo far it hasn't burned out.,=VeryGood=\nCrazy colors,=Poor=\nFor a Young Girl,=Good=\nEssential to me,=VeryGood=\nSome of the best for the price,=Excellent=\nIt was expired!!,=Poor=\nGreat Prodcut,=VeryGood=\nsmells funny,=Good=\nMy Scalp Wept (Literally),=Poor=\nGreat,=Excellent=\nstill looking for a great powder by valviolet,=Unsatisfactory=\nA skin must-have,=Excellent=\nloreal color riche,=Poor=\nWouldn't buy again,=Unsatisfactory=\nI Wish It Worked...,=Unsatisfactory=\nVery Thin,=Poor=\nnot what I had hoped,=Unsatisfactory=\nDON'T BE FOOLED,=Poor=\nWould not recommend this,=Poor=\nLeaks,=Poor=\nHate this!,=Poor=\nQuality might be changing,=VeryGood=\ngood and clean,=VeryGood=\nNadda,=Unsatisfactory=\nfavorite lotion I use.,=Excellent=\ndon't order in hot weather,=Good=\nPretty good,=VeryGood=\nCure for brittle nails,=Excellent=\ndr scholl's,=Poor=\nhorrible,=Unsatisfactory=\n\"Okay, not great\",=Good=\nMy conditioner of choice,=VeryGood=\nDoes wonders for acne,=Excellent=\nGood Toner,=Good=\nDoes nothing for me,=Unsatisfactory=\nGood hairspray for flyaways and light hold,=VeryGood=\nAh. Alright,=Good=\nGreat color for spring,=Excellent=\ngood face cream,=VeryGood=\nThe most refreshing toner I have used!,=Excellent=\nNow occupies a place of honor in my bathroom,=Excellent=\nSurprisingly marvelous,=VeryGood=\n\"Nails improved, hair not so much yet\",=Good=\nDisappointment,=Unsatisfactory=\nWorth the $$,=Excellent=\nPacifica Mediterranean Fig Perfume Smells Yummy But Doesn't Last,=VeryGood=\nGreat product,=Excellent=\n\"Not sure if working, but smells great!\",=VeryGood=\nMonster of a curling iron,=VeryGood=\nFall in love with the smell....,=Excellent=\nSmells nice,=VeryGood=\n\"For some reason, it hurts when I put it ...\",=Poor=\nnope,=Unsatisfactory=\nBurns. Creases.,=Unsatisfactory=\nhappy,=VeryGood=\nGreen and smooth,=VeryGood=\nFOR CURLY & THICK HAIR - NICE!,=Excellent=\nNot a fan of NAILPOLISH?,=Excellent=\nDeceiving,=Poor=\n\"It's good, but not for me\",=Good=\nThe best facial cream ! ( even though it's advertised as Hand Cream ) !,=Excellent=\nFun novelty but high-maintenance,=Unsatisfactory=\nI smell old people,=Unsatisfactory=\nBlue Grass By Elizabeth Arden Deodorant Cream 1.5 Ounce,=Excellent=\nVery good,=Excellent=\njust like all the others,=Unsatisfactory=\n\"\\Just A Dab\\\"\" results in Hand HEAVEN!\"\"\",=Excellent=\nNot Authentic Manufacturer's Product,=Poor=\nTurns your hair white and smells awful!,=Poor=\nNot worth the money,=Poor=\nehhhh....,=Good=\nMade my fine long hair hold curls ALL DAY!!!,=VeryGood=\nWill never go back to witch hazel!,=Excellent=\nMore Titanium / Less Zinc,=Unsatisfactory=\n\"Smells a bit like cheap perfume, but it is effective for adding moisture.\",=VeryGood=\nsmall,=VeryGood=\nDisappointed,=Good=\nNOT for bronzing,=VeryGood=\nGood Shampoo,=Good=\nStings eyes!,=Poor=\nOverpriced,=Unsatisfactory=\nToppik,=Excellent=\nHasn't worked so far!,=Poor=\nOK,=Good=\nNot As Pictured,=Unsatisfactory=\nNice Deep Conditioning,=VeryGood=\nThe salt and pepper color looks like cigarette ash,=Unsatisfactory=\nBought it as a gift.,=Good=\nOlay isn't for everyone...,=Unsatisfactory=\nA LITTLE GREASY,=Good=\nThere Was No Product in Tube,=Poor=\nuhhhhhhh,=Good=\nPack of 3???,=Poor=\nNot sure yet,=Unsatisfactory=\nIt works great on rough skin.,=VeryGood=\nSAD :-(,=Poor=\nLove this brush!,=VeryGood=\nDoes not work well on thick curly hair,=Unsatisfactory=\na lot of fake reviews,=Poor=\nold microbeads technology -- environmentally hazardous,=Poor=\nNot For Blackheads,=Good=\n\"Greasy, greasy greasy.\",=Good=\nThis product burned my eyes,=Unsatisfactory=\nShine On,=VeryGood=\n\"No more blackheads, redness, and acne!!!\",=VeryGood=\nFirst-hand comparison between Clarisonic and Nutra Sonic Sonic Skin Care Systems,=Unsatisfactory=\nCrap.,=Poor=\nDoesn't give any coverage...,=Good=\nit grows on you,=VeryGood=\nNot What I hoped for,=Poor=\nIt was ok,=VeryGood=\n\"A Wonderful, Old Standby\",=Excellent=\nIt does work a bit but it's like every other face wash,=Good=\nHow can you not love Aveeno,=VeryGood=\nNot for me,=Unsatisfactory=\nToo oily.,=Unsatisfactory=\nUnbelievably flimsy!,=Unsatisfactory=\nNope,=Poor=\nDoesn't do much for my hair,=Good=\nThe nails pictured are from MASH. The nails you receive will NOT be and may not have a nail.,=Poor=\nBest Formula,=VeryGood=\nWasn't for Me,=Unsatisfactory=\nItem Arrived with a Broken stem to the pump....,=Poor=\nNo results and expensive,=Poor=\nGreat Serum,=Excellent=\nToo Strong scented!!,=Poor=\nReally Great for Sun-Damaged Skin,=VeryGood=\n\"Dewey, natural, with a hint of gold shimmer... you can't go wrong with Maui!\",=Excellent=\nFeels Amazing!,=Excellent=\nNot at all what I expected from Frieda,=Poor=\nExtremely old product!,=Poor=\n\"Why does it work for some, but not others?\",=Poor=\nDon't waste your money,=Poor=\nNot as soft as some,=Good=\nLike a Mermaid ;-),=VeryGood=\nNice Oil,=VeryGood=\nDid not give me enough SPF protection,=Unsatisfactory=\nSpornette Are My Favorite Hair Brush,=Excellent=\nI didn't feel any difference,=Unsatisfactory=\nGood price.,=VeryGood=\nBuyer Beware,=Unsatisfactory=\n\"burn, baby burn!\",=Unsatisfactory=\nAll honesty,=VeryGood=\nI live a solid stick cover up better.,=Good=\ngood buy,=Excellent=\nGood product to be sure,=Good=\nDidn't Zap the Zits,=Poor=\nlove shea not the packaging,=VeryGood=\ngood stuff,=VeryGood=\nLightweight and SPF30!,=Excellent=\nNot Very Sudsy,=Good=\nAnother Boots Product With Cancer Causing Agent,=Poor=\nGood stuff!,=VeryGood=\nBEST STUFF EVER!,=Excellent=\nGreat Brush for my weaves!,=Excellent=\n\"not \\silky-straight\\\"\"\"\"\",=Poor=\nLike using crushed glass.,=Poor=\nMy new favorite hair dye!,=VeryGood=\nNothing Supernatural Here,=Unsatisfactory=\ntravel case,=VeryGood=\nJust Ok straightener,=Unsatisfactory=\nLOVE it...,=VeryGood=\nsuk,=Poor=\nGREASY AND GROSS,=Poor=\ngarbarge,=Poor=\nHandy applicators,=Good=\nI love it!,=VeryGood=\nGreat value,=VeryGood=\nGreat product,=Excellent=\nDON'T BUY IT!,=Poor=\nDoes a nice job,=VeryGood=\nNicegoodfine ;),=Excellent=\nI like the texture of this product and I like the ...,=VeryGood=\nIt's junk,=Poor=\nReturned It After One Use,=Poor=\nIt's nice,=VeryGood=\nDidn't work for us...,=Poor=\nIts okay,=Good=\nGet THIS Brush,=Excellent=\nTry something else,=Unsatisfactory=\nHot Tools Curling Iron,=VeryGood=\nToo thin to be of any help,=Poor=\nOkay,=Good=\nDoes not stay stuck,=Unsatisfactory=\nIrritated my eyes,=Poor=\nGreat on psoriasis,=Excellent=\n\"Freaking expensive, but it works\",=Excellent=\nIt really does work,=Excellent=\nParsley Scent - Not Really,=VeryGood=\nAs described.,=VeryGood=\nAbout the Best for the Money,=Excellent=\nMostly great,=VeryGood=\n\"Ok, but expensive and HEAVY.\",=Good=\nAll right,=Good=\nMeh.. but don't toss just yet!,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nI do get a lot out of this,=VeryGood=\nWig It Gripper,=Unsatisfactory=\nIn my opinion,=Good=\ndisappointed,=Poor=\nIt works but loud,=Good=\nGood but not that good,=VeryGood=\nDon't like the way this product feels on my skin,=Unsatisfactory=\nGreat twist up with comb - but waxy formula smears,=Good=\nLike it well enough,=VeryGood=\ndried out my face,=Poor=\nNot my favorite,=Unsatisfactory=\nSadly disappointed,=Poor=\n\"Piece of junk, buy this.....\",=Unsatisfactory=\nPretty good,=VeryGood=\nI Like It,=VeryGood=\nnot a fan,=Unsatisfactory=\nFrizz City,=Good=\nI smell like chocolate,=Unsatisfactory=\nLOVE THE GEL BUT SUPER STRONG STINKY SMELL MADE ME SICK,=Unsatisfactory=\nWrong wrong wrong!,=Poor=\nLike,=Good=\nWonderful for hair thick hair that tends to dry out.,=Excellent=\nLove the Shade,=Good=\nkinky coil hair,=VeryGood=\nSmells great,=Excellent=\nSon felt it helped some,=VeryGood=\nBeautiful color,=Excellent=\nNot strong suction,=Unsatisfactory=\nWorks Great,=Excellent=\n\"Pretty Good, But Here's a Few Tips to Make it Better\",=VeryGood=\nLove Revlon,=Excellent=\nCrap,=Poor=\nroc deep wrinkle serum,=Excellent=\nWasted money,=Unsatisfactory=\nBroke me out,=Good=\nAwesome for Co-wash for 3B Curls,=Excellent=\nThis stuff will ruin your hair.,=Poor=\n\"I don't see any results, don't like the medicine smell\",=Unsatisfactory=\nmehh..,=Unsatisfactory=\nAsh = RED??,=Unsatisfactory=\nBad for wheat sensitive,=Poor=\nBEWARE: Version sold is not the version advertised.,=Poor=\nDoesn't go on how it looks in the bottle,=Poor=\nIT'S NOT GARGANTUAN GREEN GRAPE!,=Poor=\nDidn't Work For Me,=Unsatisfactory=\nmaybe for someone/something else?,=Good=\nNexxus Vita Tress Biotin Shampoo,=Unsatisfactory=\nThere are better frizz-fighers,=Good=\nClog pores,=Unsatisfactory=\nI'm a lifer,=Excellent=\nplz dont waste ur money,=Poor=\nHard to use,=Unsatisfactory=\nProbably does it's job,=Good=\n****** $ For the price Great Product ******,=Excellent=\nCRAP!,=Poor=\nCumbersome but has good results,=VeryGood=\nIt made me break out!,=Poor=\nNice Coverage,=VeryGood=\nOnly Works While You're Wearing It.,=Good=\nTerrific!,=Excellent=\nGreat value for the price,=VeryGood=\nLike a completly different perfume itself,=Poor=\nDo NOT pay $20 for this!,=Poor=\nmakes my wife smell worse when she works out,=Unsatisfactory=\nI purchased it March 2011. It just died,=Good=\nJury is Still Out,=Unsatisfactory=\n\"Reviva Labs Glycolic Acid Facial Toner, 4 Ounces\",=Unsatisfactory=\n\"GOOD SCENT, but NOT for under 30 women\",=Good=\nAveeno Clear Complexion,=Excellent=\nstretchy headband,=Poor=\nNo necessary.,=Unsatisfactory=\nNot bad,=Good=\nMirror,=Unsatisfactory=\nAwesome!,=Excellent=\nI  have to say this did ZERO to my hair,=Unsatisfactory=\nNice,=VeryGood=\nIt straightens but hard to curl with,=Good=\nI don't believe it.,=Excellent=\nLove it,=Excellent=\nGood Perfume,=VeryGood=\nWorking so far,=VeryGood=\nDove has done better,=Good=\nNot Good,=Poor=\nGets the job done,=Excellent=\njust OK,=Good=\nReturned,=Poor=\nMaybe for girls who don't need it.,=Unsatisfactory=\ncame quickly in mail,=VeryGood=\nIrritating for Sensitive Skin,=Poor=\nLike putting greasy caulk on your face,=Poor=\nLovely product but..,=Good=\nI AM SURE THIS IS GOOD FOR OTHER TYPE SKIN,=Poor=\nExpectations may have been too high.,=Good=\npretty damn good!!,=VeryGood=\nGreat!,=Excellent=\nHorrible,=Poor=\nNice features-great warranty,=VeryGood=\nWinner for African American Natural Hair,=Excellent=\nToo Dry and Too Much Feathering,=Unsatisfactory=\nNot sure what the hype is,=Good=\nMeh,=Poor=\nwoo!,=VeryGood=\nWorks very well,=Excellent=\n\"If you have wavy but fine, frizz-prone hair -- Forget it. Use Low-Poo instead\",=Unsatisfactory=\nGreat for repairing damage or for general maintenance,=Excellent=\nPerfect for Winter Weather,=VeryGood=\n\"Lovely natural, pure stuff but packaging complaint.\",=VeryGood=\nBubble Bath Nail Polish,=VeryGood=\nIt's ok.,=VeryGood=\nNOOOOOOOOOOOOOOOOOOO!!!!,=Poor=\nnice scent,=VeryGood=\nPretty darn good.,=VeryGood=\nGave me pimples,=Unsatisfactory=\nwrinkle treatment,=Poor=\nSTICKY!,=Unsatisfactory=\nSo-so,=Good=\nomg...,=Excellent=\nWorks well for men with oily skin,=VeryGood=\nLove the fragrance,=Good=\nSome great features about this product!,=VeryGood=\nOne of the best self-tanners,=VeryGood=\nloreal color,=Poor=\nGreat product,=VeryGood=\nIt's ok,=Good=\nJust too expensive,=VeryGood=\nDon't really care  for it...,=Unsatisfactory=\nSuper clumpy and dry,=Poor=\nInitial Reaction,=Good=\nNot bad,=Good=\nDried out my skin,=Unsatisfactory=\nREALLY?,=Poor=\nDon't Waste Your Money,=Poor=\nGREAT Color,=Excellent=\nMakes My Nails Peel!,=Poor=\nGreat color green,=VeryGood=\nRed  Hot!,=Excellent=\nA basic good loose powder,=VeryGood=\nit's okay,=Good=\n\"Hard to Use, But Nice When It Turns Out As Intended\",=Good=\ncovergirl lineexact liquid eyeliner,=Good=\nHydrates Your Skin Perfectly!,=Excellent=\n\"For the price,it delievers\",=Good=\nLeaves hair shiny and soft,=VeryGood=\ndoes not work,=Poor=\nI love the color but...,=Unsatisfactory=\nWonderful,=Excellent=\nMakes my hair look worse,=Poor=\nDidn't like it,=Poor=\nvery unsatisfied,=Poor=\nWorks wonderful!!,=Excellent=\nHmm..,=VeryGood=\nThey Do a Good Job,=VeryGood=\nHmm...,=Good=\nThey look Real!,=VeryGood=\nNot for me,=Poor=\nProbably not good for sensitive skin...,=Good=\n\"Sweet Lemon...not. In fact, rancid and no longer made by Body Shop\",=Poor=\nImpressed!,=Excellent=\nBest Bobbies!,=Excellent=\nSpellcheck Overload!,=Good=\nWorks just as it says it does,=Excellent=\nDisappointed,=Poor=\nZit Me!! Foundation,=Poor=\nPerfect conditioner until I bleached my hair,=Good=\nNot loreal,=Excellent=\nNumerous uses,=Excellent=\nmy nose knows,=Poor=\n\"Nice, gentle toner\",=VeryGood=\nLove it,=Excellent=\nNot Perfect,=Unsatisfactory=\nMaybelline flared mascara,=Unsatisfactory=\nGreat smell and decent leave in conditioner,=Good=\n\"Work well, not as big as I had hoped\",=VeryGood=\nDoesn't work for Me...,=Unsatisfactory=\n3 stars because I love the bottle,=Good=\nSo so hairspray,=Good=\nNot good.,=Unsatisfactory=\nUGH!,=Poor=\ndon't waste your money,=Poor=\nSoap,=Excellent=\nDove NutriMoisture,=Good=\nI Know What You're Thinking About The Price . . . .,=Excellent=\nWeird scent,=Good=\nNoticed a difference immediately,=Excellent=\nSensitive skin? Read this!,=Excellent=\n\"Works well to clean, but not much more than that\",=Good=\nNice color but too frosty,=Good=\nstore brands are better,=Unsatisfactory=\nNot as great as other cheap brands,=Unsatisfactory=\nBe careful...,=Good=\nWELL WORTH THE PRICE,=Excellent=\n\"\\...stays on throughout my coffee sipping morning\\\"\"\"\"\",=Excellent=\nWell-made and just as described. Bristles are not too stiff or too soft -- just right!,=Excellent=\nGlass bottle so annoying!,=Good=\nit helps,=VeryGood=\ncouldn't get this product out!!!,=Poor=\nColor is a bit too bright,=Unsatisfactory=\nbest face wash everrrrr,=Excellent=\nA great toner,=VeryGood=\n\"Stick with it, it gets better\",=VeryGood=\nsoft skin but a bit greasy,=VeryGood=\nNot sure if it works yet !!,=VeryGood=\nNot great,=Poor=\nworks,=Excellent=\n\"STRONG chemical odor - weighs down fine hair, leaves hair oily - I had better luck with coconut oil left on overnight in cap\",=Unsatisfactory=\ncomplete protection,=VeryGood=\nnothing happened,=Unsatisfactory=\nImagine my surprise: the best is one of the cheapest,=Excellent=\nA generous Fancy 3 stars,=Good=\nReceived the wrong polish.,=Poor=\nBath Gloves,=Unsatisfactory=\nNot a big fan,=Good=\nGood application but not good enough protection ** UPDATE - new formula is terrible,=Poor=\nIsn't working for me,=Poor=\nwowza,=VeryGood=\nNot sure...Please read update,=VeryGood=\nIt's okay,=Good=\nSensitive Skin BEWARE...,=Good=\n\"Alpha Hydrox Foaming Face Wash, 6 oz\",=Excellent=\nI have had this product for two years... and I can't seem to run through it,=Excellent=\nTerrible. Don't waste you money.,=Unsatisfactory=\nmachine lost suction... and no way those are diamond tips,=Unsatisfactory=\nGreat lotion,=VeryGood=\nThis lotion smells horrible,=Poor=\nGreat product,=Excellent=\nOverrated,=Good=\nNothing special,=Good=\nSimply Amazing!,=Excellent=\nKinda disappointed,=Poor=\nGreat Product,=VeryGood=\nStraghtener,=Excellent=\n\"Plenty of Buck, but... no Bang :o(\",=Poor=\nMade my hair sticky,=Unsatisfactory=\nit fell apart in a month,=Poor=\nIt works..but please be careful,=Good=\nDidnt help my husband hair!,=Poor=\nNot so sure,=Unsatisfactory=\nJust a pretty mirror,=Unsatisfactory=\nGreat stuff!!,=Excellent=\nDry brushing,=VeryGood=\nWill not repurchase,=Unsatisfactory=\n2 x SLS...,=Poor=\nits okay.,=Good=\nJust a plain out regular moisturizer & nothing more,=Poor=\nFive Stars,=Excellent=\nNice,=VeryGood=\nOctinoxate...,=Poor=\nNot too bad!,=VeryGood=\nreally effective for dandruff,=Excellent=\nLove this brush!,=Excellent=\nA must have for me,=Excellent=\nDoes not blend well,=Good=\n\"Smells like my mom, or granmother...\",=Unsatisfactory=\nFragranced Skin Food...,=Poor=\nleg and body make up,=Good=\nI wanted to love this!,=Good=\nCute and Wonderful!,=VeryGood=\nnot much improvement,=Good=\nWorks but isn't the best!,=Good=\nTried and failed,=Unsatisfactory=\nLeaks!,=Poor=\nNice and Easy to Use,=VeryGood=\nhappy with it,=VeryGood=\nGreat if you plan on not moving a muscle or adding more makeup,=Poor=\nVery good product,=Excellent=\nquick absorbtion,=Excellent=\n\"Good price, half pigmentation\",=VeryGood=\nripped after a couple months of use,=Unsatisfactory=\ntoo dark,=Poor=\nrevlon lip butter,=Poor=\nmeh,=Unsatisfactory=\nMy Skin is too Sensitive for this Brand of Black Soap,=Good=\nWon't Use Anything Else,=Excellent=\nMeh...,=Unsatisfactory=\nSo-so,=Good=\nJUNK,=Poor=\nGreat product,=Excellent=\nMay work for some people,=Good=\nBottle Size,=Unsatisfactory=\nIs it Coming Out or Not?,=Unsatisfactory=\nLove it!,=Excellent=\ngreat!,=VeryGood=\nGreat At Home Peel,=Excellent=\nSo-so,=Good=\nNice smell and feel,=VeryGood=\nbad reaction,=Poor=\nGreat ITEM!!,=Excellent=\nStretch marks and facial blemishes,=VeryGood=\n8 oz lasts a LONG time,=Excellent=\nMy Skin's too sensitive,=Unsatisfactory=\nHATE IT!,=Poor=\ndo not get this if you're a woman of color,=Unsatisfactory=\nBe a Smart Consumer and Avoid this Product ...,=Poor=\n\"not as good as macademia, moroccan, or better yet homemade oils\",=Unsatisfactory=\nEh,=Good=\nWhy pay more?,=Excellent=\nGood until you try something better.,=Unsatisfactory=\nAmazing feeling for your skin BUT....,=Unsatisfactory=\n\"Just like vaseline, waste of money!\",=Poor=\nWorks for me too!,=Excellent=\nworks well,=VeryGood=\nGood stuff,=VeryGood=\nNice but no younger,=Good=\nThree Stars,=Good=\nGreat color/Great polish,=Excellent=\nBest Beauty Products = Big Bucks,=VeryGood=\nThe liner is okay nothing special,=Good=\nno mention you need to purchase an oxidant separate,=Poor=\nI threw away most of the product,=Unsatisfactory=\nFour Stars,=VeryGood=\nToo much hype for a 'so-so' product,=Unsatisfactory=\nGreta q tips!,=VeryGood=\nNot for me,=Poor=\nDarnit... another skin product failure.,=Poor=\nSave your money - very little argan here!,=Poor=\nlove,=Excellent=\nLove this!,=Excellent=\nNot Recommend,=Unsatisfactory=\nNo staining,=Excellent=\nChanging colors but still good,=VeryGood=\nAmazin Flat Iron!,=Excellent=\nGood moisture!,=VeryGood=\nAwful,=Poor=\n\"Nice Eye Cream, great for the price!\",=VeryGood=\nNothing special,=Unsatisfactory=\nGreat rollers,=Excellent=\nWorst example of what to use on gels to finish them off,=Poor=\neh,=Good=\nGreat bang for your buck but kind of shiny,=VeryGood=\nUnfortunatley Not Sulfate Free,=Unsatisfactory=\n\"Strong chemical scent, no silicone shine\",=Unsatisfactory=\nEasy to aply,=VeryGood=\ngood product,=VeryGood=\nNot FDA Approved,=Good=\nConair 1' curling iron,=Poor=\nNot my favorite ORS product,=Unsatisfactory=\nonly for 2 months,=Poor=\nReally Nice!,=Excellent=\nVery oily but good!,=VeryGood=\nGreat Product,=Excellent=\nNot very effective,=Good=\nDidn't do anything,=Poor=\nBulk!,=Excellent=\nIt's okay.,=Good=\nTorn...,=Good=\nwaste,=Poor=\nGoes on smooth and looks amazing,=Excellent=\nSmells great,=Good=\nHORRIBLE,=Poor=\nSmells great!,=VeryGood=\nGood but not great....,=VeryGood=\nSodium Laurel Sulfate is bad for hair and health.,=Poor=\n\"Works well, but it is easy to \\overdose\\\"\" on this product\"\"\",=VeryGood=\nwhat a color!!,=Excellent=\nMuch darker than I expected,=Unsatisfactory=\nBe careful,=Good=\nThis is the best sunscreen we have found!,=Excellent=\nSally Hansen does the fast dry top coat better and cheaper,=Unsatisfactory=\nLove Love Love!!,=Excellent=\nThe lights on this thing go out constantly. You ...,=Poor=\nVery sticky,=Unsatisfactory=\nMeh.,=Good=\nWhy No Expiration Date?,=VeryGood=\n\"So far, fantastic...\",=VeryGood=\n\"Eh, just like any ol ordinary shampoo\",=Unsatisfactory=\nNope,=Poor=\nStrange scent,=Poor=\nSoftens my hair but...,=Good=\n\"Long Lasting, Beautiful Color, Slow to Chip\",=Excellent=\nIt's Alright,=VeryGood=\nworks,=VeryGood=\nMade my not so sensitive skin break out,=Unsatisfactory=\nJust not good,=Poor=\nNice cleanser,=VeryGood=\nMeh. Okay I guess,=Unsatisfactory=\nno results,=Unsatisfactory=\nHaven't used yet,=Poor=\nGreat detangler,=Good=\nGood Product,=Excellent=\nDisappointed,=Good=\nGrandma aroma,=Good=\nGreat price for a great product,=Excellent=\nIt's even better in person,=Excellent=\nToo thin and not for gel-mani,=Unsatisfactory=\nNails Broke (OPI Nail Envy Original Natural Strengthener),=Unsatisfactory=\nSmelly but works,=Excellent=\nWorks great and smells fantastic,=Excellent=\n\"Ok Almond oil, but where's the \\sweet\\\"\" part?\"\"\",=Good=\nNo good,=Poor=\nSuch a nice indulgence,=Excellent=\n\"Decent for Covering Dark Circles, but Doesn't Work Well under Powdered Makeup.\",=Good=\nSo So,=Good=\n\"Smooth, creamy, hydrating\",=VeryGood=\nUse very thin layer and balance out with an acid!,=VeryGood=\nGlad you still offer it,=VeryGood=\nperfect hair every time.,=Excellent=\nOVER PRICED FOR SIZE!,=Good=\nThe product was so old that it was unusable,=Poor=\nNo Smell!,=Excellent=\nIneffective product with many dangerous ingredients,=Poor=\nGreat BHA exfoliater,=Excellent=\nGreat!,=VeryGood=\nSilky,=VeryGood=\nMeh...,=Good=\nFeel good - I like it,=VeryGood=\nNot quality crystal!,=Unsatisfactory=\nmy least favorite foundation.,=Poor=\ndoesn't work for me,=Poor=\nGood,=VeryGood=\nNot my favorite,=Unsatisfactory=\nuseless,=Poor=\nPink Grapefruit Facial Cleanser,=Unsatisfactory=\n\"Sex in the City \\Love\\\"\"\"\"\",=Poor=\nOne of my favorite ones. A bit over priced though.,=VeryGood=\nGood product but I don't care for the smell.,=Good=\nAveeno moisturizers literally cured my atopic dermatitis,=Excellent=\nDIDN'T GET WHAT I PAID 4!!!,=Poor=\ndisappointed,=Good=\nnot very good quality,=Poor=\nworks!,=Excellent=\ncovergirl mascara,=Unsatisfactory=\nUtter crap.,=Poor=\nDidn't work for me,=Unsatisfactory=\nWorks as it should,=VeryGood=\nThis does magic,=Excellent=\ngood and reliable,=Excellent=\nRuined my hair,=Poor=\nDestroyed my skin...,=Unsatisfactory=\nExcellent fragrance - but doesn't last,=Good=\nSmells good but hard to get out of the bottle!,=Good=\n\"Ok, could be better\",=Good=\n\"Good product, icky smell\",=Unsatisfactory=\nThe worst!,=Poor=\nDO NOT use this foam dye!!!,=Poor=\nLove this stuff!,=Excellent=\nIt really works!,=VeryGood=\nOrdered in error,=VeryGood=\nNot entirely sure what it was supposed to do,=Unsatisfactory=\n\"Oh the Flakes, the flakes!\",=Poor=\nIt didn't help my dry processed hair,=Unsatisfactory=\nLarge,=Excellent=\nGood Brush,=Good=\nWorks For Me,=VeryGood=\nGreat,=Excellent=\nby valviolet,=Unsatisfactory=\nMEH,=Unsatisfactory=\nDidn't work for me,=Poor=\nWaste of $-other products can achieve the same result for less,=Poor=\nPerfect,=Excellent=\nFormed scabs on my scalp,=Poor=\nFast Shipping,=Excellent=\nWorks pretty good,=VeryGood=\nreally expensive for only a couple uses!,=Unsatisfactory=\nAwesome,=VeryGood=\n\"Great in theory, not in practice\",=Unsatisfactory=\nHives,=Poor=\nIt's a well-made brush,=Good=\nSkin Has Not Improved,=Good=\nIt just sits in my cabinet.,=Unsatisfactory=\nMade of toxic substances... but works well on hair,=Unsatisfactory=\nI've used better,=Unsatisfactory=\nLittle dab 'l do ya,=Good=\nprefer individual colors,=VeryGood=\nIts ok,=VeryGood=\n\"Noticed Nothing, I'm 26.\",=VeryGood=\nNot for me.,=Unsatisfactory=\nSmell is too much!!!,=Good=\nNot the best for thin hair,=Good=\n\"Soft, Smooth, a Bit of Residue-Feel\",=Good=\nCheaply made and flimsy.,=Poor=\nno thank,=Excellent=\ncakey,=Poor=\n\"works fine, and smells okay\",=Good=\nOkay,=Good=\nGreat Scent - Small Bottle,=VeryGood=\nNot worth buying,=Unsatisfactory=\nImposter????,=Good=\nGreat moisturizer,=Excellent=\nHair Fail,=Poor=\nnot great,=Unsatisfactory=\nUsing it for years,=Excellent=\nL'oreal can do better.,=Unsatisfactory=\nHum...,=Unsatisfactory=\nAwful product,=Poor=\nHORRIBLE BUY!,=Poor=\nListen to us!,=Poor=\nBought this but don't use it.,=Unsatisfactory=\npca skin collagen hydrator,=Poor=\nCame out true to color,=VeryGood=\nGreat Product,=VeryGood=\nWorks great with the Clarisonic!,=Excellent=\nNeutral Lipgloss,=Excellent=\nI wont be repurchasing this shampoo,=Good=\nluv Neutrogina Triple Moisture Deep Recovery Hair Mask,=Excellent=\nfast!,=VeryGood=\nit works well...,=Good=\nTERRIBLE,=Poor=\nLove this product,=Excellent=\nSmaller than expected,=Unsatisfactory=\nInteresting,=VeryGood=\nSuper setting spray,=VeryGood=\nToo sticky,=Poor=\nExcellent,=Excellent=\nDarn packaging!,=Unsatisfactory=\nBlushing,=Excellent=\nScent of soap remains on dishes,=Poor=\ncheap imitation,=Unsatisfactory=\nlove this conditioner,=Excellent=\nDry skin and rash...,=Poor=\nLovely face moisturizer,=VeryGood=\n\"Lush has amazing Products, this one is one of the best\",=Excellent=\nCompared with T3 Tourmaline Hair Dryer,=VeryGood=\nVery drying,=Poor=\n\"Nice Product, Not All-natural\",=Good=\nMask,=VeryGood=\nThe no messing around clarifying shampoo that stinks,=VeryGood=\nThis works,=Excellent=\nmy new best lotion,=Excellent=\nWorks well,=VeryGood=\nA little goes a long way,=Excellent=\n\"Just an ordinary dryer, but more expensive!\",=Good=\nToo Drag Quennie,=Unsatisfactory=\nno stars,=Poor=\nMust Be Maybelline's Idea Of A Joke,=Unsatisfactory=\nNope,=Poor=\nworks well,=VeryGood=\nnot for dry skin,=Good=\nMade For A Woman But Usable By A Man... Though I'm Not Sure He'd Want To,=Good=\nExfoliating Facial Gel,=Good=\nNot for me,=Unsatisfactory=\nHawaii for your Head,=Good=\nMakes my skin break out,=Poor=\nSmells Like Perfume,=Unsatisfactory=\nhmm,=Good=\nno real difference in pores,=Good=\nno,=Good=\nAlpha Hydrox,=Unsatisfactory=\nI love it,=VeryGood=\nGood for Dry skin,=VeryGood=\nJust Me... Good fragrance - lacks longevity...,=VeryGood=\nGreat! But wheel sucks,=Good=\nDoes NOTHING,=Poor=\nGreat,=VeryGood=\ndidnt love it,=Good=\nI have never had allergies but I sneezed like crazy when I smelled the open bottle,=Unsatisfactory=\nwonderful find,=VeryGood=\nNot for me..,=Good=\nnot that good,=Unsatisfactory=\nLove it!,=Excellent=\nGreat Moisture Conditioner,=Excellent=\nThat's Mr Raccoon Eyes to you!.....,=Good=\nPuts you and your dog to sleep with no side effects,=Excellent=\nDid not work for me,=Unsatisfactory=\nNOT what I ordered.,=Unsatisfactory=\nLove it and Fast Results!,=Excellent=\ndoesnt smell much like coconut,=Unsatisfactory=\nbroke first time using it,=Poor=\nGooey and gloppy,=Poor=\n\"After 30 years, won't buy it again\",=Unsatisfactory=\nfresh smell,=Good=\nWife Hates It,=Poor=\nlevel 2 is the way to go!,=Excellent=\nFive Stars,=Excellent=\nDon't like,=Poor=\n\"Very drying, causes splits around fingernails\",=Good=\nAmazing on extremely curly hair,=Excellent=\nworks great,=Excellent=\nDont like it:(,=Good=\nok,=Good=\nI had to return it,=Poor=\nQuestionably noticeable results when tried on several 30-somethings and 40-somethings.,=Good=\nGreat product,=Excellent=\nit hurts,=Unsatisfactory=\nSilver gray hair brightner,=VeryGood=\nLovely Rose Scent,=Excellent=\nNo longer impressed.,=Unsatisfactory=\nSmelly,=Poor=\nJar was opened--will not buy again.,=Poor=\n\"Plate works good, but lots of practice needed\",=Good=\nGreat stamping polish,=VeryGood=\nPart of my nightly routine,=Excellent=\n\"Minimizes pores and smoothes skin, good price\",=Excellent=\nehhh...,=Good=\nleft my hair and scalp so dry :(,=Poor=\nSmell is way too strong and makes me sneeze for hours after using it.,=Poor=\nWorks more like a primer for me.,=VeryGood=\nOK,=Unsatisfactory=\nGood dye but get two boxes,=VeryGood=\nGreat hot air brush,=Excellent=\nDone with this product!,=Poor=\nNot my preference,=Unsatisfactory=\nBurned my skin something terrible,=Unsatisfactory=\nNot for me.,=Unsatisfactory=\nRead Ingredients...,=Poor=\nIt'll do,=Good=\nLe Male on Sale,=Excellent=\nWonderful Moisturizing Conditioner,=Excellent=\n\"Was a bit worried to use it, but it's awesome\",=VeryGood=\nMaybelline Great Lash...,=Excellent=\nNothing special..,=Poor=\nRe: Nice Box,=Excellent=\nPretty Colors But...,=Unsatisfactory=\nLove,=Excellent=\nyellow,=Good=\nGoes on smooth but flakes all over your face,=Unsatisfactory=\nMy Hair Needed Protection,=Excellent=\nthis foundation sucks,=Poor=\n\"Be careful, it has more than minerals in it!\",=Unsatisfactory=\nWill Not Dry Thick Wavy Hair,=Unsatisfactory=\nToo flowery,=Poor=\nAussie Hair Insurance Leave in Conditioner,=Excellent=\nExcellent product,=VeryGood=\nGave me a headache!,=Poor=\nGood occassional cleanser,=Good=\nDose it do angthing at all?,=Poor=\nafter shower,=VeryGood=\nDarn....Not so great.,=Unsatisfactory=\nA REAL STEP AND FACE SAVER,=VeryGood=\nDidn't smell like redcurrant and basil to me,=Unsatisfactory=\nAwful,=Poor=\nPureology Convert,=Excellent=\nVery refreshing snd subtle scent,=VeryGood=\nsmell is too strong!,=Poor=\nexcellent product,=Excellent=\nMy husband really likes it,=Excellent=\n\"Excellent product, but pooped out on me suddenly\",=Good=\nAwkward.,=Poor=\nHORRIBLE!,=Poor=\nReal Lanolin,=VeryGood=\nDecent.,=Good=\nAmazingly perfect,=Excellent=\n\"Best \\exfoliating\\\"\" moisturizer out there\"\"\",=Excellent=\nDealing with the smell,=VeryGood=\ngood stuff,=Excellent=\n\"pretty good, but the bottle does not have a proper dispenser\",=Excellent=\nSnagged my hair,=Unsatisfactory=\nGreat Little Brush,=Excellent=\nAmazing for my acne,=Excellent=\njust in case,=VeryGood=\nRegular ol' soap....,=Poor=\nA flat iron is easier.....,=Good=\nLove it..updated review: Awful packaging,=Good=\nRedness reduction,=Good=\nOk,=Good=\nDid nothing,=Poor=\n\"Smooth, Opaque\",=Excellent=\nThe Best Tool for Hair,=Excellent=\nOne of my favorite scents.,=Excellent=\nGood Conditioner but it's soo $$,=Good=\nWhere have you been all my life,=Excellent=\nJunk,=Poor=\n\"Smells bad, doesn't work well\",=Poor=\nMy life saver!,=Excellent=\nCould be better,=Good=\nBEAUTIFUL!,=Excellent=\nTHE HONEYSUCKLE ONE WORKS MUCH BETTER ON MY HAIR TYPE,=Good=\nLove It!,=Excellent=\nNot for me,=Unsatisfactory=\n\"Soap is excellent, but it doesn't last long enough ~ Good for a magician\",=Good=\nVERY small,=Poor=\nFantastic Primer,=VeryGood=\nNot good,=Unsatisfactory=\nPerfect,=Excellent=\nMust have gotten a bum pack!,=Poor=\nOil free my behind.,=Unsatisfactory=\nnew best friend in oils,=Excellent=\nLOVED IT,=Excellent=\nNot what i wanted,=Unsatisfactory=\nBeautiful Color,=Excellent=\n\"Not for color treated, dry hair\",=Good=\nBurns eyes and gives pimples,=Unsatisfactory=\nokay cleanser,=Unsatisfactory=\nDoes whats needed,=Excellent=\nmisleading,=Poor=\nI don't like it,=Unsatisfactory=\nOrange Streaks are not my style,=Poor=\nAllergic Reaction!!,=Poor=\nSigh..,=Poor=\n\"Works Great, Looks Nice\",=VeryGood=\nGreat white!,=VeryGood=\nGuilty pleasure!,=Excellent=\nWorked Ok,=VeryGood=\nHair clips,=VeryGood=\nVery dry,=Good=\nToo Greasy,=Good=\nComplete junk,=Poor=\ncheap,=Unsatisfactory=\nGood Product,=VeryGood=\nSally Hansen Double Duty Base & Top Coat,=Good=\nFake,=Poor=\nGot it as a gift but ready to chuck it,=Poor=\nGood,=VeryGood=\nNot what I expected,=Unsatisfactory=\nRich cream,=VeryGood=\n\"Cruelty free, works and does not cause break outs\",=Excellent=\nsweet spray,=VeryGood=\nsmooth,=Excellent=\nCrazy reactions,=Unsatisfactory=\ndoesn't stick,=Poor=\nanti-aging scrub,=VeryGood=\nBest suited for dry skin,=Good=\nPhilosophy girl!,=Excellent=\nLOVE IT,=Excellent=\n\"Seems to work, but very difficult to dispense!\",=Unsatisfactory=\nNot the greatest,=Good=\nGood product,=Excellent=\nDidn't work for me,=Unsatisfactory=\nSheap Better Lotion,=VeryGood=\nOne Of Olay's Better Products,=VeryGood=\nWay too perfumy,=Unsatisfactory=\nPretty - more orange in person,=VeryGood=\nWORKS... but US version is different than the original French - BEWARE,=Unsatisfactory=\nNot Worth It,=Unsatisfactory=\nGreat moisturizing product but not enough bronzing,=Good=\nCouldn't get this to work,=Unsatisfactory=\nGood polish,=VeryGood=\nDefinately not worth all the hype,=Unsatisfactory=\nYou get what you pay for,=Unsatisfactory=\nMiracle cream,=Excellent=\nGreasy...,=Unsatisfactory=\ni wouldn't recommend,=Unsatisfactory=\nVery creamy,=VeryGood=\nBuilt up not that great.,=Unsatisfactory=\nPerfect,=Excellent=\nNot for me.,=Unsatisfactory=\nyuck,=Poor=\nExpected better,=Unsatisfactory=\nGreat,=VeryGood=\nReturned this,=Poor=\n\"Not as expected, very faint\",=Good=\nInexpensive,=Good=\nCrap.,=Poor=\nI also feel like this works better when you work out,=Unsatisfactory=\nNot what it's cracked up to be.,=Unsatisfactory=\nToo slick,=Poor=\nNo progress,=Poor=\nGood for Price,=VeryGood=\nIt does what it says it does,=VeryGood=\nSo So,=VeryGood=\n\"Extremely easy to use, gives my hair body, shine and bounce!\",=Excellent=\nDoes What It's Supposed To,=VeryGood=\nLovely creamy texture,=Good=\nAwful!!,=Poor=\nGreat basecoat,=Excellent=\nHaven't Noticed Any Results At All,=Unsatisfactory=\n\"Great scent, good performance, a luxury in the kitchen\",=Excellent=\nhard to use efficiently so it ends up being too expensive.,=Good=\nA decent eye makeup remover.,=Good=\nHelps my dry skin.,=VeryGood=\nImpossible permenent RED? Poof!,=Excellent=\nAwesome,=Good=\nGreat comb,=Excellent=\nsoap,=Poor=\nSmells SOOOOOO STRONG!!!!!,=Unsatisfactory=\nawesome,=Excellent=\nsmells wonderful,=VeryGood=\nNot a great iron...,=Poor=\nBeen using for last 3 years,=VeryGood=\nwriting titles is the hardest part of the review,=Good=\nGreat Face,=Excellent=\nthe scent ruins it,=Unsatisfactory=\nThis liquid soap is one of the best I've used,=VeryGood=\nBare Escentuals Flawless Application Face Brush,=VeryGood=\nNever received,=Poor=\n\"Moisturizing, just make your hair stink a lil lol\",=Good=\nlove this color,=Excellent=\nLOVE THIS ITEM!!,=Excellent=\nAwesome Product!!,=Excellent=\nStays Damp On Face,=Unsatisfactory=\nExcellent,=VeryGood=\nMust-have supplement,=Excellent=\nto light,=Unsatisfactory=\nSigma Kabuki - F80,=Unsatisfactory=\nA Bit Greasy,=Good=\nIt leaves residue,=Unsatisfactory=\n3 yrs strong,=VeryGood=\n\"awesome smell, but doesn't last long\",=VeryGood=\n\"Wonderful for what it is, but question marks in general on silicones safety on skin.\",=Good=\nNothing Works Like it....or Smells Like it! Mmmmm.,=Excellent=\nNot impressed,=Unsatisfactory=\nWorks wonders,=VeryGood=\nIt could use some improvements,=VeryGood=\nI bought this at Rite-Aid,=Excellent=\n\"not initially impressed, will give it more time, but...\",=Unsatisfactory=\nThe best,=Excellent=\nSuch great lotion...,=Excellent=\nNasty Habit prompted purchase of this Nasty Nail Polish.,=Excellent=\nLove this stuff,=Excellent=\nShine on...for a little while,=VeryGood=\nIts like silk on my face!!!,=Excellent=\nBest Adhesive By Far,=Excellent=\nNOTHING like the picture I dont and wouldnt even use ANY ...,=Poor=\nGood coal tar shampoo,=VeryGood=\nAverage eyeliner,=Good=\nNot great,=Unsatisfactory=\nGreat Face Protection without the massive chems,=VeryGood=\nCharlie Gold is better than Charlie!,=VeryGood=\nI love this scent that you don't find often in retail stores!,=Excellent=\nSoft then sticky,=Good=\nOh My Shea Heaven!!!!,=Excellent=\nMarvelous for Drying Acne,=Excellent=\nGood for practice beginners like myself,=Unsatisfactory=\n3-4 uses and you're done,=Poor=\nDidn't do much...,=Unsatisfactory=\nWorks!,=VeryGood=\nReally good,=VeryGood=\nDepends on ur taste in curls.,=VeryGood=\n\"Dry skiners, read on! =)\",=Excellent=\nDid not like it,=Poor=\nFun Sponge,=Unsatisfactory=\n\"good hold, but hair looks dry and lifeless\",=Good=\ngreat scrub for oily acne prone skin!,=Excellent=\nLove.,=Excellent=\n\"Lovely shade, but do not dare sweating\",=Good=\nI will used this soap for the rest of my life!,=Excellent=\nMy face didn't like this product,=Unsatisfactory=\nWorks well but overpriced...,=VeryGood=\nJust ok.,=Good=\nRepairs-but not instantly,=VeryGood=\nDon't like it,=Poor=\n\"Good, but not as good as I expected.\",=VeryGood=\nEscape cologne 3.4 ounce,=Unsatisfactory=\nyuck!,=Poor=\nSoooo smooooooth!!!,=Excellent=\nMixed feelings...,=Good=\nNot for My foot,=VeryGood=\nMaybelline Instant Age Rewind Primer,=Unsatisfactory=\nNot worth the money,=Unsatisfactory=\nOil is lovely but the scent is strong,=Good=\ncomfortable,=Excellent=\nDon't Be Fooled,=Excellent=\npremier dead sea eye serum,=Poor=\nMy husband likes it...,=Good=\nWorks well for my hair,=Excellent=\nMakes shiny nails and drys fast,=VeryGood=\n\"Photo shows color much darker and not very accurate, but porduct feels nice and is a nice color.\",=Good=\nCrap,=Poor=\n\"\\Extra-intense\\\"\"... for about 5 seconds\"\"\",=Unsatisfactory=\nbest. smell. ever.,=Excellent=\nNot Great,=Unsatisfactory=\nWHY DID I WASTE MY MONEY??,=Poor=\nBest alternative to bleaching.,=VeryGood=\nGreat Standby,=Excellent=\nBlack?,=Unsatisfactory=\nCheap and efficient,=Good=\nSmooth and even,=VeryGood=\nLove this.,=Excellent=\nWonderful scent addition for many uses,=Excellent=\nLove this cologne.,=Excellent=\nWould def buy again.,=Good=\nFor those of us who need a heavy conditioner...,=VeryGood=\nDidn't do much,=Good=\nGreat cleanser for a reasonable price,=Excellent=\n\"So far OK, but contains parabens\",=Good=\nNot for me,=Unsatisfactory=\nThis product felt like it damaged my hair more.,=Poor=\nEh...,=Good=\nI hate it,=Poor=\nIll conceived and cheap,=Poor=\nSo so,=Good=\nTerrible quality,=Poor=\nNot the same as you buy in store,=Unsatisfactory=\nNot a fan,=Unsatisfactory=\nThe stench!,=Unsatisfactory=\n3 random pairs,=Unsatisfactory=\nWould not reccommend,=Unsatisfactory=\ndml moisturizing lotion,=Poor=\nLooks Pastey,=Unsatisfactory=\nHair oil,=Good=\nFabulous!,=VeryGood=\nnice,=Good=\nGood,=Good=\nPlease Read Warranty Void with Amazon,=Poor=\n\"I love Image Skincare, but...\",=Unsatisfactory=\nMy only color!,=Excellent=\nNOT great for the FACE!,=Poor=\nI really wanted this to work for me :-(,=Unsatisfactory=\nSuper bright,=VeryGood=\ngood product....excellent service!!!!,=Good=\nwow.... 100% good investment,=Excellent=\nThey named this conditioner right,=Excellent=\nPain relief,=Excellent=\nI don't like it,=Poor=\nDamaged my hair!,=Unsatisfactory=\nSwitched from Aveeno,=Excellent=\nNot good for thick curly hair,=Unsatisfactory=\n:(,=Poor=\nTo greasy and doesn't work!!! (GUY REVIEW),=Poor=\nIt's good mascara,=Good=\nGets hot quickly,=VeryGood=\nWaste of money,=Unsatisfactory=\nToo fine,=Unsatisfactory=\n\"If you're ok with head/hair smelling like tar, seriously\",=Poor=\n\"Don't be fooled by \\Frequently Bought Together\\\"\"!\"\"\",=Poor=\nIt's just okay,=Good=\nNothing yet,=Unsatisfactory=\ngood moisturizer,=Excellent=\nNice color,=Good=\nDefinately a Wen girl!!,=Excellent=\nSmells good but it doesn't last....,=Good=\nfreah clean smell: lasted for the duration,=VeryGood=\nhigh color,=Good=\nIs Dove always Dove?,=Poor=\n\"meh, product is ok\",=Good=\nManly Scent,=VeryGood=\nVaseline Body Lotion,=Unsatisfactory=\nDidn't notice any improvement,=Unsatisfactory=\nNot worth it. Gross makeup.,=Unsatisfactory=\nJericho brand is better,=Unsatisfactory=\nOne-half of this product is awful!,=Poor=\nUncomfortable? Yes... but Worth It!,=VeryGood=\nJust as nasty as you can expect,=Excellent=\nLight & Non-Oily; Tones Down Redness Only Slightly,=Good=\n\"Very good protection, but\",=Good=\nThe worst blush I've ever used,=Poor=\n\"Awful, and I think it's replacing Revlon's colorstay mineral makeup\",=Unsatisfactory=\nAmaaaazing :),=Excellent=\nI don't mind The Smell,=Good=\nTwo sided mount mirror x5,=Excellent=\nGood coverage but not all day,=Good=\nNot for me!,=Poor=\nPretty!,=VeryGood=\n\"Not for frizzy hair or a gentle blow dry, very extreme\",=Good=\nd+,=Unsatisfactory=\nFive Stars for Those in Need of Skin Repair. Two Stars for Those Already Invested in Their Skin. Part II.,=Good=\nFeels great,=VeryGood=\nits an ok eyeshdow,=Unsatisfactory=\nNOT A HIT,=Poor=\n\"Finulite - The End to Cellulite, AM/PM Cellulite Cream (2 - 4 oz bottles)\",=Poor=\nWow,=Excellent=\nAre you kidding?,=Poor=\n\"Doesn't works, Not Natural!\",=Poor=\nNot too bad,=VeryGood=\n\"Dr. King's Natural Medicine Gout Symptom Formula,\",=Poor=\nOne of the Best,=VeryGood=\nGood stuff,=VeryGood=\nKerastase Reflection By Kerastase Chrom Thermique Thermo Radiance,=Unsatisfactory=\nJust the label and bottle alone...,=Good=\nGreat brush,=Excellent=\nDisappointment,=Poor=\nPretty good but not great,=Good=\nI do not recommend,=Poor=\nObagi : C - Exfoliating Day lotion.,=Excellent=\n\"Got a synthetic brush, not natural bristle\",=Poor=\ngift,=Excellent=\n... really doesnt do as it say but goes on nicely is about it and a good,=Good=\nNAUTICA VOYAGE,=Good=\nGreat stuff!,=Excellent=\nDefinitely worth the money and offers Longevity and a very safe/fresh masculine scent.,=VeryGood=\nDoesn't work for me,=Poor=\nHair Color Crayon,=VeryGood=\n\"It does wonders, BUT YOU HAVE TO USE IT CORRECTLY\",=Excellent=\nGood buy,=Good=\ndryed out my face,=Poor=\nI really liked it! Then it broke.,=Excellent=\ntoo wet?,=Unsatisfactory=\nVery heavy,=Unsatisfactory=\nPretty Good,=VeryGood=\nDoesn't have a very Verbena smell,=Unsatisfactory=\nMy favorite ABH toner,=VeryGood=\nLittle goes a long way.,=Excellent=\nwill not buy again,=Unsatisfactory=\nBurns and very expired!!,=Poor=\nWorks but not exciting,=VeryGood=\nHome Health Roll-On Deodorant Herbal Scent -- 3 fl oz,=Good=\n\"Good spray, bad watertightness\",=Unsatisfactory=\n\"Great Product, Requires Pro Equipment For Full Effect\",=VeryGood=\nNot bad,=Good=\nAnise Little Scent,=VeryGood=\nGreat Base Coat,=VeryGood=\nI like this stuff,=VeryGood=\nDoesn't stay,=Good=\nAmazing BUT ...,=Poor=\nKEEP IT SIMPLE! Average Combination (slightly sensitive) Skin - PERFECT!!!!!!!!!,=Excellent=\nIts ok,=Good=\nnot all natural and is a bit greasy,=Good=\nFilmy,=Unsatisfactory=\nI used to love this...,=Good=\ndidn't work,=Poor=\nGood clips,=VeryGood=\nBROKE ME OUT,=Poor=\nx,=Poor=\nOk for what it is,=Good=\nCheap,=Poor=\nWill NOT work for cystic acne..,=Unsatisfactory=\n\"Great product, poor applicator\",=Good=\ngreat product,=Excellent=\n\"Mine broke, but got a new one\",=Good=\nOverrated,=Poor=\nIt's ok...,=Good=\nAwful,=Poor=\nGreat for long hair dogs,=Excellent=\nGreat for face and body for people with sensitive skin or eczema,=Excellent=\nVery difficult to use,=Poor=\n\"Maybelline new york cover stick concealer, medium beige, medium\",=VeryGood=\n\"The First Use Was OK, But...\",=Unsatisfactory=\nIt's a Miracle!,=Excellent=\nGreat HAIR REVIVE,=VeryGood=\nsheer makeup,=VeryGood=\nawesome for girls first stylisg tool!,=Excellent=\nNo difference,=Unsatisfactory=\nDidn't work for me,=Unsatisfactory=\n\"Lightweight, super-absorbent, soft & fluffy\",=VeryGood=\nToo much hype.,=Unsatisfactory=\nBetter than any cream or lotion I've ever tried.,=Excellent=\nTwo Stars,=Unsatisfactory=\n\"I love Reviva products, but this doesn't work for me at all.\",=Unsatisfactory=\nFragrance Free is NOT FOR ME,=Unsatisfactory=\nGreat exfoliator,=Excellent=\nIt does what it says...removes frizz and ads volume,=Excellent=\nCalling it straight,=Good=\nSmells awful,=Poor=\nBad bottle?,=Poor=\nDid not work for me at all,=Poor=\n\"Decent, but Color Issues\",=Good=\nMaybe it's me,=Unsatisfactory=\n\"Nice texture, but definitely not a \\cocoa\\\"\" smell\"\"\",=Good=\nThis homeopathic remedy helped me,=Excellent=\nThis only smells okay,=Good=\nStop working,=Unsatisfactory=\n\"I was skeptical, but these really DO seem to help!\",=Excellent=\nNice brush kit,=Good=\nA Primer in Time Saves Nine (Beauty Troubles),=Excellent=\nPungent Smell like Sour Breath,=Poor=\naweful odor - hated it,=Poor=\nnot for me,=Unsatisfactory=\nBest hair drier,=Excellent=\nThe brush ruins it,=Poor=\nNot all that,=Unsatisfactory=\nCLEANER THAN CLEAN,=VeryGood=\ngreat toner!,=Excellent=\n\"Its \\okay\\\"\". I have had better primers.\"\"\",=Good=\n\"If I was buying falsies, I'd sure hope they don't look like this!\",=Poor=\nnot for long hair,=Unsatisfactory=\nThis is great!,=VeryGood=\nGoing Through the Motions,=Good=\n\"L'Oreal Paris Frost and Design Highlights, Caramel\",=Unsatisfactory=\nJust grind up your own oatmeal,=Unsatisfactory=\nGood.,=VeryGood=\nI Do Not Know as yet.,=Good=\nLove etc- strong fragrance,=Unsatisfactory=\nMy Daughters hair is Purple!!!,=VeryGood=\nDisappointed!,=Unsatisfactory=\ngood,=VeryGood=\nI love this product.,=Excellent=\nGold face,=Unsatisfactory=\nLove it,=Excellent=\nNice,=VeryGood=\nThere's a reason these are cheap,=Poor=\n\"Use sparingly, and not often!\",=VeryGood=\nDon't like it,=Unsatisfactory=\n\"For spa-like treatment, not sleep\",=Good=\nNot the Jean Nate of yesteryear,=Poor=\nDoes something,=Good=\nHorrible,=Poor=\nMEH,=Unsatisfactory=\n\"Great Serum, No Scent, Perfect for Men\",=Excellent=\nThe fragrance was not as hoped,=Poor=\nEyes look more puffy,=Poor=\nBest moisturizing cream around,=Excellent=\nObagi C Serum for Eyes,=Good=\nWill make your skin darker,=Poor=\n\"nice color, seal broken\",=VeryGood=\n4 coats,=VeryGood=\nDidn't work,=Poor=\nstrong but good product,=Good=\nburt bees,=Good=\nBetter than Proactiv,=VeryGood=\n=(,=Unsatisfactory=\nShocked at how fast it dries my hair!,=VeryGood=\nok,=Good=\nHmmmm,=Good=\nDid't work for me,=Poor=\nDoes not work for me.,=Poor=\nFor dry hair,=VeryGood=\nNot the greatest polishes,=Unsatisfactory=\nWonderful product! {upate regarding how oil is harvested},=Poor=\n\"Works, but nothing special\",=VeryGood=\nDoesn't provide great hold,=Good=\nexcellent,=Excellent=\nIs not bad,=Good=\nRE:  O.K,=Good=\nCheap construction,=Poor=\nHorrible smell!,=Poor=\nNot up to par,=Unsatisfactory=\nExact copy of cheaper cody sand and sable,=Unsatisfactory=\nNot the product I ordered,=Poor=\nthe stamper is okay,=Good=\nUnimpressed,=Unsatisfactory=\nTampered,=Unsatisfactory=\nShine?  Where's the shine?,=Unsatisfactory=\nGood Product,=VeryGood=\nDo not Buy!,=Poor=\nNot a winner for me.,=Unsatisfactory=\nArsenic icky,=Poor=\nBurt's Bees Acne Lotion,=Good=\nCute Mirror,=VeryGood=\nNo Hair Growth Upset Stomach,=Poor=\nnice moisturizer,=Excellent=\ndon't really see any difference,=Good=\nI like it,=VeryGood=\nperfect for bleached platinum hair,=Excellent=\nRough on Clothes,=Unsatisfactory=\n\"Horrible, Horrible!!\",=Poor=\nBetter than my old $10 hair dryer...,=Good=\nThe best cleanser in the world!,=Excellent=\nDisappointed!,=Unsatisfactory=\nNot As Good As Other Hot Oil.,=Good=\n\"Lame, lame lame\",=Poor=\n\"Pleasant, but not that rejuvinating\",=Good=\nThis does not smell like my other bottle,=Unsatisfactory=\nnot as good as expected,=Unsatisfactory=\nYUCK,=Poor=\n\"Good soap, lathers well - rinses clean, mild scent\",=VeryGood=\nnot worth the money,=Good=\nGood Product,=VeryGood=\nVERY moisturizing but leaves your hand oily for a while,=Excellent=\n\"Couldn't even keep it on my face for 5min, it smells so horrible\",=Poor=\nBulky but very good,=VeryGood=\nGreat matte bronzer!,=VeryGood=\nDon't waste your money!,=Poor=\n\"Not on my face, maybe my elbows?\",=Unsatisfactory=\nIt's great because I live in a sunny climate and have ...,=Excellent=\n\"Do you suffer from keratosis pilaris (chicken skin)?  Great lotion, bad scent.\",=Good=\nDermalogica Microfoliant,=Excellent=\nvery gentle,=VeryGood=\nDisappointed,=Unsatisfactory=\n\"As good as proactive, without being as messy\",=VeryGood=\nI don't know why it got so many good reviews.,=Poor=\nUse as a pet shampoo!,=Excellent=\nNice gift,=VeryGood=\nDisapointed,=Unsatisfactory=\nDoes not work ab-so-lu-te-ly,=Unsatisfactory=\nResults do not last,=Good=\ndried up,=Good=\nGreat hold.,=VeryGood=\nSo glad I found this product!,=Excellent=\nExactly wanted I needed!!!!,=VeryGood=\nCareful,=Unsatisfactory=\nwrinkle exentuator,=Unsatisfactory=\nDisappointed,=Poor=\nSimply the best,=Excellent=\nFairly heavy night cream,=VeryGood=\nI liked the cheaper one I had,=Good=\nokay,=VeryGood=\nGood for prevention but doesn't erase them,=Good=\nIt a no go,=Poor=\nPleasant smelling,=VeryGood=\nAMAZING,=Excellent=\nWorks well.,=Excellent=\nCleans well nicely!,=Excellent=\n\"decreases frizz, increases manageablilty!\",=VeryGood=\nits whatever,=Good=\nWorks for me,=VeryGood=\nSecond skin,=Excellent=\nOrganic lotion,=Good=\nNot a good idea,=Poor=\nnot so much,=Good=\nGlo Minerals,=Good=\nSimilar to Joyful Heart - charity shower gel benefiting the joyful heart foundation,=Good=\nBroke me out,=Poor=\nCREME DE LA CREAM,=Excellent=\n...,=Poor=\nFairly dry concealer,=Unsatisfactory=\nNot my favorite,=Good=\nSMELLS WONDERFUL,=Excellent=\nGood product for the price,=VeryGood=\nThis brush sucks!,=Unsatisfactory=\nLovely!,=VeryGood=\nThank you to all the reviewers for suggesting this face wash,=Excellent=\nCleans well,=Excellent=\nGreat product for fine lines and dry patches....,=Excellent=\nSmaller size,=Good=\nmaybelline new york ultra-brow brown powder,=VeryGood=\nWaste of money,=Unsatisfactory=\nVERY DISAPPOINTED,=Poor=\nNOT AS GOOD AS ORIGINAL,=Unsatisfactory=\n\"Works well, as long as it stays together.\",=Good=\nNot worth your time or money,=Poor=\nPass it up,=Unsatisfactory=\nSo glad to find this on Amazon,=VeryGood=\nA waste of time!,=Poor=\nCurly top,=Excellent=\nNew Holy Grail Face Product!,=Excellent=\nperfect for us,=Excellent=\nLeft a goopy film on my eyes,=Unsatisfactory=\nNothing Special,=Unsatisfactory=\nI like this product very very much!,=VeryGood=\nDaughter like them,=Good=\nnot good for my yorkie terrier,=Unsatisfactory=\nBeware! causes milia like bumps on some skins,=Poor=\nnot my favorite scent,=Good=\nnot a treatment at all,=Poor=\nuse it all the time,=Excellent=\nObsessed,=Excellent=\nDoes not protect from heat!,=Poor=\nNot as good as it sounds,=Unsatisfactory=\nWorks well,=Excellent=\nWill use even though don't really like. Loved the one I had before,=Unsatisfactory=\nWe Shall See......,=VeryGood=\nLove it!,=VeryGood=\nGood but messy,=VeryGood=\nGreat Color,=Excellent=\nDidn't do anything for me,=Unsatisfactory=\nTerrible for fine hair!,=Poor=\nEhhhh,=Unsatisfactory=\nCould be better,=Good=\nMy Favorite Cleanser,=Excellent=\nNice for oily skin,=VeryGood=\nHorrible product,=Poor=\nIt's just glue but it works!,=Good=\nGreat product,=VeryGood=\nMay be fine for light breakouts; not for deeper problems,=Unsatisfactory=\nok,=Good=\n\"Only for the Fine Haired, Dry-Normal Shampooing Woman\",=VeryGood=\nMy hair looked oily at the end of the day,=Good=\nUseless,=Unsatisfactory=\nToo dry,=Good=\nWintertime Fave!,=Excellent=\nNot for me,=Unsatisfactory=\nDIDN'T WORK ON MY HAIR,=Poor=\njust okay,=Good=\nUseless.,=Poor=\n\"OMG, it had been sitting on my shelf for months\",=Poor=\nMY KINKY CURLY CONDITIONER,=Good=\nDoesn't work for me yet...,=VeryGood=\nGreat for my heat cap treament,=Excellent=\nVanilla Heaven,=Excellent=\nUsed to love it until I looked at the ingredients - contains Parabens in it,=Poor=\nDried out,=Unsatisfactory=\nThe brushes are of poor quality but dotting tools are perfect.,=Unsatisfactory=\nThe rating it deserves depends on your expectations,=Good=\nWorks great - horrible smell,=VeryGood=\nMeh,=Unsatisfactory=\nWorks okay but too many harsh ingredients,=Unsatisfactory=\nAcidic Smell,=Unsatisfactory=\n\"CHEAP PLASTIC, BREAKS EASILY.\",=Unsatisfactory=\nwrong reviews,=Poor=\nNot Recommended,=Unsatisfactory=\nJust not sure....,=Unsatisfactory=\nnot sure if it works completely for me,=Good=\nNot for COPD,=Good=\nDisappointing.,=Poor=\nNot as good for me as expected,=Unsatisfactory=\nNo miracles here,=Unsatisfactory=\nWeak Scent,=Poor=\nmess up my face.... :-(,=Poor=\nOverdrying,=Unsatisfactory=\nMuguet Des Bois By Coty For Women. Cologne...,=Good=\nDidn't work for me...,=Unsatisfactory=\nanother one bites the dust...,=Unsatisfactory=\nIdeal,=Excellent=\nNot what I should have bought,=Good=\nwill not come off.,=Poor=\nBest,=Excellent=\nohkay oil,=Good=\nABC Good Morning America (recommended this),=Excellent=\nIts ok,=VeryGood=\nbottle is breaking,=Unsatisfactory=\nLove love love,=Excellent=\nMixed,=Good=\n\"Extremely watery. Original Noxzema used to cool my skin, this doesn't. See photo.\",=Unsatisfactory=\nYou get what you pay for!!,=Unsatisfactory=\nGot this for my Birthday 4 years ago...,=VeryGood=\nMakes my hair feel DRY,=Unsatisfactory=\nHATE IT,=Poor=\ngreat,=Excellent=\nToo heavy and greasy for me,=Unsatisfactory=\nHair clip,=Unsatisfactory=\nSoothes Chapped Hands Better Than Just About Anything Else,=VeryGood=\nNot for coarse hair.,=Unsatisfactory=\nNo stars!  A major RIP-OFF!!!,=Poor=\n\"Tiny brush, this liner tends to clump up\",=Poor=\nVery Moisturizing,=VeryGood=\nGreat for summer,=VeryGood=\nWorth the price,=Good=\nEh,=Unsatisfactory=\n\"Too light, one-color-doesn't match all\",=Poor=\nColor wasn't for me.,=Unsatisfactory=\nWaste of money !,=Unsatisfactory=\nThis is a great product!!!,=Excellent=\nReally Nice Light Leave in Conditioner,=Excellent=\nDoes Not Work on Hereditary Dark Circles,=Good=\nWhat a huge disappointment!,=Poor=\nPaler and more Aqua,=Good=\nCreates a smooth appearance,=VeryGood=\nGood Value~,=VeryGood=\nnot too sure about this - leaves itching on the shaved part of the face,=Unsatisfactory=\nSTRONG Stuff,=VeryGood=\ncreates pale face,=Unsatisfactory=\nTerrible,=Poor=\nNice and light but possibly breaking me out,=Good=\nNice,=VeryGood=\nBaby Belly Butter,=VeryGood=\nNot very moisturizing in my opinion,=Good=\nGood deal,=Unsatisfactory=\nmascara,=Excellent=\n\"Organic Acne Treatment?  Yes, but not quite as effective as conventional systems\",=Good=\nVery Disappointed,=Poor=\nBE CAREFUL WITH THIS PRODUCT - THIS IS NOT NEUTROGENA'S SPECIALTY - I'M PROOF,=Poor=\nGood First Week...Then?,=Good=\nSo far nothing..but I've only added it to my conditioner not my hair dye.,=Good=\nDries and flakes,=Unsatisfactory=\nMessy,=Unsatisfactory=\nWell....,=Unsatisfactory=\nperfect,=Excellent=\nReally Bad,=Poor=\nwas okay.,=Good=\nOne Star,=Poor=\nHydrating and Refreshing,=VeryGood=\n\"So far, so good\",=VeryGood=\nNice,=Good=\nEhhh,=Unsatisfactory=\nUseless,=Poor=\n\"good for curing pimples, bad for sensitive skin\",=Good=\nThis hair curler is absolutely wonderful!!!,=Excellent=\nmargarine,=VeryGood=\nARE YOU 20 yrs. old?  If so this is for YOU !!!!!,=Poor=\nLove that clean tingle on my face!,=Excellent=\nNo miracle; also it STINGS!,=Good=\nDoesn't last long,=Good=\nChalk,=Poor=\nDoesn't do what I had bought it for.,=Good=\nYour exotic scent will be noticed,=VeryGood=\ndoes not work on extremely oily skin,=Poor=\nthe best,=Excellent=\nhow can anyone like this???,=Poor=\nWORKS,=Excellent=\nDon't understand the hype about this primer,=Poor=\nLove Essie!,=Excellent=\nDO NOT ORDER! They Got Me Too!!!!!!!!!  ARGGH!,=Poor=\nGood stuff,=Excellent=\nNo big deal,=Unsatisfactory=\nOnly conditioner I will use now,=Excellent=\nstraight up AGES you. :(,=Poor=\nAverage Shampoo - Excellent Price,=VeryGood=\nNot so good.,=Unsatisfactory=\ncucumber for sensative skin,=VeryGood=\nWonderful! Give yourself a Facial,=Excellent=\nToo green,=Unsatisfactory=\nTwo Stars,=Unsatisfactory=\nStings a bit,=Unsatisfactory=\nvery dissapointed,=Unsatisfactory=\nGREAT!!(:,=Excellent=\n\"Effective, But Scent (Although Pleasant) Is A Bit Too Pronounced For My Personal Taste\",=Good=\nDoesn't work,=Poor=\nLove the color but it's kind of dry,=Good=\nLove it!,=Excellent=\nCause rash....,=Poor=\nI really like this product! Love it!!,=Excellent=\n\"All the benefits of emu oil, only more expensive\",=VeryGood=\nSo far so good,=Excellent=\nWorth every penny,=Excellent=\nsoft,=VeryGood=\nwonderful smell,=VeryGood=\n\"Buy the cheaper ones, same thing\",=Poor=\nNothing special,=Good=\nHard to use,=Good=\nBad product,=Poor=\nDoes not last,=Unsatisfactory=\nLeaves behind residue,=Unsatisfactory=\nNice!,=Excellent=\n\"Heavy, not as hot as more expensive, cheap\",=VeryGood=\nI am SO EXCITED!,=Excellent=\n\"great color fast, minimal streaking, minimal odor\",=VeryGood=\nLove,=VeryGood=\nSO TINY,=Good=\n\"Cheap product, contains formaldehyde...\",=Poor=\nThanks,=VeryGood=\nSo awful and smelly!,=Poor=\nI've been using this since I was a teen!,=Excellent=\nDon't recommend at all.,=Unsatisfactory=\nGood product,=VeryGood=\n&#34;sex in the city&#34;,=VeryGood=\nDON'T WASTE YOUR TIME,=Poor=\nM2 Skin Care HP Skin Refinish 20% 50 ml.,=Unsatisfactory=\nDo not use!,=Poor=\n\"Used to be the best, but the formula has changed in the past year\",=Good=\nLove this Leave-In!,=Excellent=\nNo effect after 2 months,=Poor=\n\"Good product, but expensive for such a small bottle! Go with the masque instead!\",=VeryGood=\nWorth buying,=Good=\nHas worked really well for me!,=VeryGood=\nHard to apply evenly,=Good=\nIt's Dyed,=Unsatisfactory=\nSide effect of nausea made it impossible for me to continue with product,=Poor=\nAwful,=Poor=\nI don't understand the hoopla around this product,=Unsatisfactory=\nElite Serum,=Poor=\nNot to impressed......,=Unsatisfactory=\nI'm a lotion addict -- 4.5*,=VeryGood=\nNot good,=Poor=\nSo/So,=Good=\nGorgeous Blush and AUTHENTIC!,=Excellent=\nSavior from tangled AA hair,=Excellent=\ngreat man shampoo...,=Excellent=\nThis made me very itchy,=Poor=\nNot Quite Nag Champa,=Unsatisfactory=\nGoes on Strong - Dissipates,=Good=\nMade my skin dry,=Poor=\nDimethicone Face,=Unsatisfactory=\n\"I do like it, dries fast\",=VeryGood=\nContains propelyn glycol,=Poor=\n\"Doesn't cause breakouts, but doesn't moisturize enough either\",=VeryGood=\nehhh,=VeryGood=\nNot good,=Unsatisfactory=\n\"I don't know why, I just like it!\",=VeryGood=\nquality went waaaaay down,=Unsatisfactory=\nITS CRAP PASSING FOR SALON QUALITY,=Poor=\nAwesome,=VeryGood=\nOne Star,=Poor=\nSoothing protection!,=Excellent=\nintroduction to Deva,=VeryGood=\nA little disappointed.,=Unsatisfactory=\nReally Practical,=VeryGood=\ngood curling leave-in,=VeryGood=\nDidn't work for me,=Unsatisfactory=\nNot for thick & dry long hair that needs detangling,=Unsatisfactory=\nNot what it was - Check the names to be sure what you're getting,=Unsatisfactory=\nMy daughter is addicted to these.,=Excellent=\nyuck yuck yuck.. does not wash off,=Poor=\nI will never use another,=Excellent=\n\"Thoroughly Clean, most definitely!\",=VeryGood=\nHATE THE SMELL!!,=Poor=\nRevived Curls,=VeryGood=\nDidn't do anything,=Poor=\nNot good.,=Unsatisfactory=\nIt works,=Excellent=\nrev.,=Poor=\nWhat you do get is fine,=Unsatisfactory=\nCheaper than the name brands but works the same!~,=Excellent=\nToo heavy/greasy,=Unsatisfactory=\nNice Clippers,=VeryGood=\nI didn't honestly believe nails could dry this fast!,=VeryGood=\nLove the Product,=Excellent=\n\"Nice brush, to expensive\",=VeryGood=\nQuality Has Decreased,=Poor=\nFun,=Good=\nCan do without,=Good=\nIt's okay.,=Good=\nnot too fond of it,=Unsatisfactory=\nIt really does stay,=Excellent=\nallergic,=Poor=\nSmooth and Straight to ... Frizzy Kinks?,=Unsatisfactory=\nWhat's all the hype?,=Good=\nGreat scent.,=VeryGood=\nGreat Curling Iron,=Excellent=\nFor curly hair!,=VeryGood=\nEucerin Lotion,=Unsatisfactory=\nehh,=Poor=\nMakes a great base,=Excellent=\nDoesn't look as natural as I had hoped,=Good=\nI feel soft,=VeryGood=\ngreat product,=VeryGood=\n\"Good, But a Bit Drying\",=Good=\nSkip this!,=Poor=\nJust ok,=Good=\nShiney...yet greasy.,=Good=\nGloppy and thick,=Unsatisfactory=\nlegendary universal household cleaner from 1960's....,=Excellent=\nlove this soap,=VeryGood=\n\"It's soap, isn't it?\",=Good=\nWORST!,=Poor=\nAmazing Stuff!,=Excellent=\nMediocre product,=Good=\nAverage!!,=Good=\nOk for short hair,=Good=\nNot my favorite...,=Unsatisfactory=\nClinique its better,=VeryGood=\nSimply awesome.,=Excellent=\nover chrged,=Poor=\nwork pretty well,=VeryGood=\ntoo heavy for us,=Good=\nNot for me,=Unsatisfactory=\nKit has no expiration date all sunblocks require exp date per fda,=Unsatisfactory=\nThis stuff works very well. I have used this ...,=VeryGood=\nEhh it's ok.,=Good=\npeeled off!!!,=Poor=\nI wish it worked for me,=Unsatisfactory=\nI use everyday,=Excellent=\n\"Falls apart, can't use on sensitive skin\",=Unsatisfactory=\nContains Toxic Parabens in the ingredient list....,=Unsatisfactory=\nMeh,=Unsatisfactory=\nToo sparkly,=Unsatisfactory=\n4 different sizes,=Good=\nBare Minerals for life!,=Excellent=\nContains other ingredients,=Unsatisfactory=\nGreat  Idea & Design - But Somewhat Fragile,=VeryGood=\nNot a fan,=Unsatisfactory=\ngreasy....,=Unsatisfactory=\nUseless,=Poor=\nVery oily and greasy product and does not work,=Poor=\nAwkwardly Small,=Poor=\n\"Great idea, poor product\",=Unsatisfactory=\nless loose hair in my bathtub,=VeryGood=\nbest mascara ever,=Excellent=\nHave not noticed anything,=Unsatisfactory=\nMay Not Be the Best Choice if you Have Acne-Prone Skin,=Good=\n\"Works for whiteheads, not nodular acne\",=Good=\nGreat starter kit saves time when packing for vacations,=Excellent=\nSecret Brightener,=Excellent=\nI wanted it to work so much...but it didn't,=Poor=\nA TINT IS NOT A STAIN!,=Poor=\ndont like the product at all ...waste of money,=Unsatisfactory=\nIt looks like vaseline!,=Unsatisfactory=\n\"clumps, hurts sensitive eyes\",=Unsatisfactory=\ngood makeup remover!,=Good=\nLove,=Excellent=\nPluses and Minuses,=Good=\nLiked It At First But Then Turned Dry -  Has Alcohol and Perfume,=Unsatisfactory=\n\"Foamy & nice smelling, but unremarkable\",=Good=\nLove it,=Excellent=\nUsed,=Good=\nOne Star,=Poor=\nDO NOT BUY THIS!!!!  IT WILL BREAK WITHIN 1 MONTH OF USE,=Poor=\nAnother good product,=VeryGood=\nso damn red!!!,=Excellent=\nNot so much for fair skin,=Good=\nSuper sharp.,=Excellent=\n\"Color matches, but crumbles off quickly\",=Unsatisfactory=\nDONT BUY ITEM FROM CRAPPY You2Be COMPANY!!!,=Poor=\nIt's good,=Good=\nThis oil is a life saver!!,=Excellent=\nLook elsewhere....,=Poor=\n\"Makes Me Feel Awake, Causes Zits Doesn't Remove Them\",=Poor=\nIt really works.,=Excellent=\nGarbage,=Poor=\nWorst product ever. Irritates NOT sensitive skin.,=Poor=\n10% Glycolic Acid value,=Excellent=\nsave your money,=Poor=\nDifficult and Dirty,=Poor=\nA Waste of Money.,=Unsatisfactory=\nMineral Oil is the number two ingredient,=Good=\nFlakes off my nails and doesn't appear to help with peeling,=Unsatisfactory=\nCaked all over my eyelid,=Poor=\nRobanda Intensive Moisturizer Cream with Advanced Retinol Vitamin A,=VeryGood=\nWho cares If i can't read the label!,=VeryGood=\nNothing out There as effective and better! Give it time!,=Excellent=\nKeeps my hair frizz-free!,=Excellent=\nNot A Worthy Choice,=Poor=\ndo not waste your money,=Poor=\nUse this moisturizer if you want to scare little kids!,=Poor=\nsmells good,=VeryGood=\nIts ok,=Good=\nGood exfoiliator,=Excellent=\nBurn Baby Burn,=Poor=\nGood Stuff!,=VeryGood=\nSame product in new package,=Good=\nMeh,=Good=\nHorrible.,=Poor=\nVery nice,=Excellent=\nIF I could give it NO stars I would! - USE CAUTION-,=Poor=\npuke :D,=Unsatisfactory=\nSerious strength.  Very good results.,=VeryGood=\nNot exactly what I expected,=Good=\nBeware if you have a sensitive scalp,=Good=\nwahhhhh fail for me,=Poor=\nGreat for greasy hair but not the best smell,=VeryGood=\nMuch darker than it appears on the box,=Unsatisfactory=\nOriginal!!!!!,=Excellent=\nFits but keeps slipping off,=Good=\nSmells Cheap!!!!,=Unsatisfactory=\nNOT GREAT FOR CLEANING GEL NAIL BRUSHES!,=Poor=\nPretty good,=VeryGood=\nYummy,=VeryGood=\n\"Its natural, but...\",=Poor=\nDidn't work out so great,=Unsatisfactory=\nFeel the vibrations,=VeryGood=\nGreat mascara,=VeryGood=\nI was expecting something better,=Good=\n\"Meh, its water...\",=VeryGood=\nDont know why Im the odd one out,=Poor=\nNot that impressed,=Unsatisfactory=\n\"OK, but not worth the price\",=Unsatisfactory=\nGreat hairbrush,=VeryGood=\nIts Alright,=Good=\nNot a fan,=Unsatisfactory=\nBio Ionic is very good indeed but debatable on the One Pass...,=VeryGood=\nLove,=Excellent=\nWon't buy again,=Poor=\nNeutral...,=Good=\nTHE BEST POWDER I HAVE EVER USED!!!!,=Excellent=\ngreasy.....,=Unsatisfactory=\nNo more brittle hair,=VeryGood=\nHigh quality and divine.,=Excellent=\nLittle disappointed...,=Unsatisfactory=\nnot effective,=Unsatisfactory=\nOK!!,=Good=\nMade me Break Out,=Poor=\njust okay,=Unsatisfactory=\nNice microderm system (Philosophy dupe!),=VeryGood=\nHorrible!!,=Poor=\nFive Stars,=Excellent=\nNot too sure what the hype is about?,=Good=\n\"SORRY, NOT FEELING ANY DIFFERENCE\",=Unsatisfactory=\n\"Dermatologists say its a good cleanser, but it was not gentle enough for my sensitive skin\",=VeryGood=\nBeauty blender,=Good=\n\"For very, very fine lines only\",=Good=\nThis ended up drying my skin,=Unsatisfactory=\nContains parabens and other chemical banned in Europe,=Unsatisfactory=\nI like the creme version better,=Good=\nSmells like skunk spray,=Poor=\nIt's okay,=VeryGood=\nWay too harsh for my skin,=Unsatisfactory=\n\"Aeh, bare escentuals is better.\",=Unsatisfactory=\nGood mask,=VeryGood=\nNot what I was hoping,=Good=\nPalty Milk Tea Brown,=Unsatisfactory=\nBAD,=Unsatisfactory=\n\"Really intense, fake-y smell\",=Good=\nFlakes like crazy,=Poor=\nNot what I expected.,=Good=\nDid not remove black henna,=Unsatisfactory=\nVery sheer,=Good=\nNice for the Price,=Good=\nNo power,=Unsatisfactory=\nReminds me of my Mamaw Ella,=Excellent=\nNot for me,=Unsatisfactory=\nIt works and is good for day wear,=VeryGood=\nat least its cheap...,=Unsatisfactory=\nGreat Classic Blush for any skintone.,=Excellent=\nIs it doing anything?,=Unsatisfactory=\nThayer - Witch Hazel Toner,=Excellent=\nIt's long lasting.,=Good=\n\"EYE CREAMS ARE ALL THE SAME, THIS ONE IS A BIT BETTER\",=VeryGood=\nSmells great,=VeryGood=\nmild,=Good=\nNo curls :(,=Unsatisfactory=\n\"Smells AMAZING,\",=Excellent=\n\"Effective sunscreen, but cosmetically flawed\",=Good=\nNot so much,=Poor=\nNot sure of I like it,=Unsatisfactory=\nEXCELLENT!,=VeryGood=\n\"All-natural, non-irritating, moisture-rich conditioner\",=Excellent=\nvery nice,=Excellent=\n\"Seems to diminish the appearance of scars and the effects of aging, slowly but surely\",=VeryGood=\nNice Headbands,=VeryGood=\n\"Red, Red rash ...\",=Unsatisfactory=\nGreat Machine or so I thought,=Poor=\nNot sure how well it works...,=Good=\n2 Duds in a Row,=Good=\nMeh...,=Good=\nHave Had Bettter,=Good=\nGood variety,=Unsatisfactory=\nBad buy!,=Unsatisfactory=\nDoes not work for growth,=Good=\n\"Kept hair up, but pulled it out too\",=Good=\nNot quite the shade I expected.,=Unsatisfactory=\nOnly one complaint,=VeryGood=\nWeak!,=Poor=\n\"some pluses, some minuses = not such a bad deal\",=Good=\nPretty good,=VeryGood=\nnice exfoliator,=VeryGood=\nNice,=VeryGood=\nNot for curly hair of any hair cutitcle thickness unless you go straight first,=Unsatisfactory=\nOn the same Paige - orange polish,=Good=\nMaybe a little too gelly...,=Unsatisfactory=\ntoppik hair building fibers,=Excellent=\nIt's a decent mask,=VeryGood=\nHeavy-Duty Undereye Concealer,=Excellent=\nWorks Great!!! BUTTTTTT.......,=Good=\nVERY BAD PRODUCT!!!!!!!!,=Poor=\nCauses Bad Acne,=Unsatisfactory=\nLasts Forever,=VeryGood=\nWant the biggest zit of your life?,=Poor=\nMaybelline >Dior,=Excellent=\nNew Favorite Product!,=Excellent=\nAs described,=Excellent=\nDidnt work,=Poor=\n\"Sensitive skin formula provides light, non-greasy moisture for combination skin\",=VeryGood=\nSpray It Away,=Excellent=\nAlmost too effective - have to use sporadically,=Good=\nNice concealer,=Good=\nI don't like it,=Unsatisfactory=\nMeh.,=Unsatisfactory=\nFast shipping,=VeryGood=\nNot good for thick eyelashes,=Poor=\nI really didn't find that much of a difference....,=Good=\nSmells great,=Excellent=\nThis brush is heaven BUT the devil seems to find his way through...,=VeryGood=\n\"L'Oreal Paris Feria Multi-Faceted Shimmering Colour, Level 3 Permanent, Light Brown/Natural 60\",=Excellent=\n\"Nice, clean smell\",=VeryGood=\nDelon cotton rounds,=Unsatisfactory=\nFragrance is too strong for me,=Unsatisfactory=\ndid nothing for me,=Poor=\nThree Stars,=Good=\nCheap and most broke,=Poor=\nNot what I expected...,=Unsatisfactory=\ngood product,=Good=\nI Love it!!,=Excellent=\nVery invigorating but not very moisturizing,=VeryGood=\nWATERY,=Unsatisfactory=\nGreat,=Excellent=\nSmells wonderful but have not seen improvements,=Good=\nGreat Toner,=Excellent=\nNot how it looks,=Good=\nDoesn't work for me.,=Unsatisfactory=\nnot what i spected,=Unsatisfactory=\nnot much bang for your bubble,=Good=\nits OKay i had better,=VeryGood=\nGreat for short hair or training a tween,=Good=\nDoesn't it smell like a lipton tea?!!,=Good=\nNyx eye shadow base,=Poor=\nGreat buy,=VeryGood=\nHenna,=Excellent=\nNot as good as the other Alba products,=Good=\nLike it a lot.,=VeryGood=\nStraight out,=Good=\nSeemed to make acne worse on my son,=Unsatisfactory=\n\"OMG, WTH IS THAT SMELL?\",=Poor=\nawsome product...,=Excellent=\nBetter for dry skin...,=Good=\n\"L'oreal paris active daily moisture lotion, 4 fl oz\",=VeryGood=\nNot for sensitive skin,=Unsatisfactory=\nSo....,=Good=\nSo Far so Good!,=Excellent=\nUsed for soapmaking,=VeryGood=\nGood news. Bad news.,=VeryGood=\nmoisturizing,=VeryGood=\nNot bad.,=Good=\nTwo Stars,=Unsatisfactory=\nNice price from amazon..,=VeryGood=\nGo for the scrub instead,=Poor=\ndon't brush my hair much,=VeryGood=\nnot sure about the pheromone part...,=VeryGood=\nreally smoth skin,=VeryGood=\n\"I like the scrubber, wish the pads were unscented\",=VeryGood=\nNot bad,=Good=\nOlay Brush,=Unsatisfactory=\nMore magenta than true red,=Unsatisfactory=\nDoes Not Work on Dark Hair!,=Poor=\nGreat stuff.,=Excellent=\nQuality oils,=VeryGood=\nDidn't work,=Unsatisfactory=\n10 years and not switching,=Excellent=\nGreat,=VeryGood=\nNot bad,=Good=\njust okay,=Unsatisfactory=\nGood product but ...,=VeryGood=\nWHY $ 7.00?,=Good=\nI hires it works,=Good=\nstill can't figure it out,=Unsatisfactory=\nJust like drugstore bobby pins,=Poor=\nMy only complaint is that the bottle isn't bigger!,=Excellent=\nRevitalift cleanser!!!,=Poor=\nSmells like all the other self tanners!,=Unsatisfactory=\nLove the Shimmer,=Excellent=\nFor the price I expected more,=Unsatisfactory=\nThis doesn't work,=Poor=\nDisappointed,=Poor=\nOnly con is that its a little bit greasy...,=VeryGood=\n\"SEEMS GREAT, BUT...\",=Good=\ngreat deal,=Excellent=\nLight and Moisturizing,=Excellent=\nSomewhat smoothing,=Good=\nDISTINCTLY FEMININE,=VeryGood=\nMade my hair stiff,=Poor=\nMagical scent,=Excellent=\n\"Cheap, dirty, ugly, worthless\",=Excellent=\nWell.,=Unsatisfactory=\n\"Good variety of scents, but not much lather.\",=Good=\n\"Good color, lousy consistency.\",=Good=\nNothing special,=Unsatisfactory=\nCan't Tell the Difference...,=Unsatisfactory=\nSmells Great!,=VeryGood=\nDestroys Nails,=Unsatisfactory=\nOn the fence,=Good=\nGood but not my favorite........,=VeryGood=\nLife saver,=Excellent=\nA Decadently Sumptuous Indulgence!,=Excellent=\nMeh,=Poor=\nCheap product,=Poor=\nNot sure how it i supposed to do what it's meant to do,=Good=\nGreat soap,=Excellent=\nHair color,=Excellent=\nBasically just a good moisturizer.  Did not live up to it's claim.,=Unsatisfactory=\nSmells Rancid,=Poor=\nReview Update,=VeryGood=\nDidn't Work,=Poor=\nThis will cause more acne. Don't use it.,=Poor=\nReally nice sponges with lots of uses...,=VeryGood=\nThe ingredients are very harsh,=Good=\nMore user friendly,=VeryGood=\nThis was definitely not worth the money.,=Good=\nAwful lashes,=Poor=\nLove these!,=Excellent=\nNo offensive smells and works well.,=VeryGood=\nOk,=Good=\ngreat,=VeryGood=\nYayy to kinky curly,=VeryGood=\nWorks without irritation,=Excellent=\nGreat,=Excellent=\nnot what I wanted,=Unsatisfactory=\nI hate,=Poor=\nWhere are the primary colors?,=Poor=\nDidn't like it,=Unsatisfactory=\nExpected More for the Price,=Good=\nnot sure about this,=Poor=\nIt's ok...,=Unsatisfactory=\nColor Care Shampoo should not contain Sulfates!,=Good=\nOkay,=Good=\n\"Barrel doesn't rotate, and drying functionality is minimal\",=Unsatisfactory=\nWill buy again,=Excellent=\nNice,=Good=\nidk,=Poor=\nPricey Perfection,=VeryGood=\nDoes Little But Better Than Nothing,=Good=\nNot universal,=Poor=\nNot the best and expensive!,=Good=\nMust have!,=VeryGood=\nPure Gold,=Excellent=\nProduct old and expired,=Poor=\nDermatologist said causes breakouts,=Poor=\neh,=Good=\nNot that great. Definately overpriced.,=Unsatisfactory=\nNasty stuff,=Poor=\nDrying to my bleached hair,=Poor=\nthe only hairspray I will use,=Excellent=\nI REGRET BUYING THIS,=Poor=\nNever again,=Poor=\nCheck safety & then decide,=Poor=\nNot my favorite,=Unsatisfactory=\nSo-So,=Good=\nreally like it,=VeryGood=\nLash and eyebrow tint,=Excellent=\nIt's OK,=Good=\nA little bit goes a loooong way!,=VeryGood=\nclinique dramatically different moisturizing lotion,=Good=\nsmells like vanilla milk shake,=Good=\nNot as exfoliating as the liquid,=Good=\nExpense not worth it!,=Unsatisfactory=\nNothing special,=Unsatisfactory=\nConfusing and Cheap,=Poor=\nLove this stuff!,=Excellent=\nMakes my skin feel 10 years younger,=Excellent=\nTwo Stars,=Unsatisfactory=\ngarbage,=Poor=\nWorst primer!,=Poor=\nThree Stars,=Good=\nGood product,=Excellent=\nwell healthful shampoo,=Excellent=\ncheaply made.,=Unsatisfactory=\nMata Hari,=Excellent=\n\"great color, but it doesn't last\",=Good=\nNot for me.,=Unsatisfactory=\nBig Disappointment,=Poor=\nCheap but does the trick,=Good=\nBEST,=VeryGood=\nLight and Fresh Moisturizer,=VeryGood=\n\"Great for sensitive skin, but a little watery for me.\",=Good=\nGreat product,=Excellent=\nI think it is doing the job that I purchased it to do,=Excellent=\nWtf?,=Unsatisfactory=\nDoes nothing,=Poor=\nMally Mascara,=Unsatisfactory=\nWatch out!,=Poor=\nCheaply made product,=Poor=\n\"Sensitive skin, red/purple damage , Covers it all\",=Excellent=\n\"No good; bulky, slippery, and blade tip a little too thick/dull\",=Unsatisfactory=\nOnly works if . . .,=VeryGood=\nNOT FOR SENSITIVE SKIN,=Unsatisfactory=\n!!1,=VeryGood=\n\"Light and refreshing, but not much else\",=Good=\nMy second favorite tanner,=VeryGood=\n\"A drying, sticky,  sunscreen, smelling like bug spray !\",=Unsatisfactory=\nalmost perfect,=VeryGood=\nthis product is overhyped!! Left my hair frizzy!,=Good=\nAwful sunscreen,=Poor=\nIt's okay.,=VeryGood=\nSave Your Money & Buy a Bottle of Hydrogen Peroxide!,=Poor=\ndisappointed,=Poor=\nUtterly Disappointed!,=Poor=\nKiss My Face-Pure Olive Oil Soap,=Excellent=\nDidn't Work At All,=Poor=\nLOVE Burt's Bees,=Excellent=\n\"Great moisturizing soap, I use it like shaving \\cream.\\\"\"\"\"\",=VeryGood=\ngreat product,=Excellent=\nconfused,=Poor=\nIt didn't work for me,=Poor=\nehh okay,=Good=\nThis was a waste of my money,=Poor=\n\"Well, I like it\",=VeryGood=\nWould have just gone lighter,=Unsatisfactory=\nSmells gross,=Unsatisfactory=\nWorks well,=VeryGood=\nNot sure yet!,=Good=\nSmells like roses,=Good=\nGood for emptying wallet,=Poor=\ngreat deal,=Excellent=\nGood  but watered down,=Good=\nIt was good until...,=Good=\nStops the burn after face peel,=VeryGood=\nMY ONLY MASCARA,=Excellent=\nno like,=Poor=\nDoesn't curl my hair much,=Unsatisfactory=\n\"Great colors, but only one brush!!\",=VeryGood=\nGood Everyday Mascara,=VeryGood=\nIt was ok,=Good=\nBest lotion I've tried so far,=VeryGood=\nShould've been cheaper,=Unsatisfactory=\nCant use any other moisturizer after trying this.,=VeryGood=\nAfter 3 weeks no improvements,=Unsatisfactory=\n... do anything you will continue loosing your hair don't waste your money like me that I used a,=Poor=\nleaves too much residue on hair,=Unsatisfactory=\nMade my face itch,=Poor=\nWasted lay time !!!,=Poor=\nA gentle way to tone the skin,=Excellent=\nNot so great for bigger sections of hair,=Good=\nHealing,=Excellent=\nnot happy at all,=Poor=\nMy favorite hair dryer. Great buy.,=Excellent=\nLove Love Love,=Excellent=\nI prefer Revlon.,=Unsatisfactory=\nIT'S OKAY...,=Good=\nheat up fast and stabilizes fast,=VeryGood=\nNYX eyeshadow in Navy Blue,=Unsatisfactory=\nThis is my second bottle of NOW lemon oil and sure it wont be my last.,=Excellent=\nit's okay,=VeryGood=\nDisappointing!,=Unsatisfactory=\n50/50,=Good=\nDon Buy,=Poor=\nIt's ok....,=VeryGood=\nPRODUCT NOT WHAT IS PRESENTED ON AMAZON WEBSITE!,=Poor=\nolay,=Good=\n\"Great lotion, but not worth the double price it raised!!!\",=VeryGood=\nOk,=Unsatisfactory=\nGo for the Real Thing!,=Unsatisfactory=\nThis does... nothing,=Poor=\n\"Foam won't go onto palm, as the ears are in the way\",=Unsatisfactory=\nNot for acne proned skin,=Unsatisfactory=\nDon't really notice a change,=Unsatisfactory=\nNot so great - stings & dries,=Unsatisfactory=\nAlmost but two hours tops,=Good=\nElegant color,=Excellent=\nReview,=Excellent=\nWorth it :),=VeryGood=\nThis worked good until...,=VeryGood=\nTerrific For Every Skin,=VeryGood=\nWrong size!!,=Good=\nDidn't work for me,=Unsatisfactory=\nWent to Nail Tek II Instead,=Good=\nBetter out there,=Good=\n\"Sticky, heavy, & Breakouts!!!\",=Unsatisfactory=\nGood spray bottle,=VeryGood=\nNautica Blue,=Unsatisfactory=\n\"Good for dandruff, not so much for clean-feeling bouncy hair.\",=Good=\nbuy at any cost!!,=Excellent=\nlight and SPF!,=Excellent=\nGood for dry hair,=VeryGood=\n\"Adequate dryer, but think twice if you want to use the attachments.\",=Unsatisfactory=\nVery Good Vitamin - Works Well If Directions Followed,=VeryGood=\nLove the smell,=Good=\nLove it!,=Excellent=\nA fine and affordable night cream option...,=VeryGood=\nBDB is a bust,=Poor=\nOPI Kyoto Pearl,=Excellent=\nAnother great....,=Excellent=\nThe Best Product for Ragged Cuticles and Cracked Fingertips,=Excellent=\nHave not used it much yet...but I am happy,=VeryGood=\nseems like a gimmick to me,=Good=\nMoisterization,=Excellent=\nAs Good As My Favorites,=Excellent=\nSmells Digusting,=Poor=\ntotally confused,=Unsatisfactory=\nDigestive advantage,=VeryGood=\nI've had better,=Unsatisfactory=\ntoo thick and stiff,=Unsatisfactory=\nHmmmmmm...its definitely not for straightening your hair from poofy to silk straight,=Good=\n\"Great for sinus relief, clear breathing, colds/flu, and for facial pores\",=Excellent=\nThis really works,=Good=\nThis is the only moisturizer for me,=Excellent=\nEarth Therapeutics Skin Therapy Complexion Brush,=Unsatisfactory=\ngreat product,=Excellent=\n\"Excellent ingredients, not very rich however\",=Good=\nEh...,=Good=\nPleased,=Excellent=\nVery disappointed,=Poor=\nNot impressed with the scent for the price,=Poor=\nHandle switches suck!!!!!,=Unsatisfactory=\nI like this product..,=Good=\nWay too sparkly,=Unsatisfactory=\ndont bother..,=Unsatisfactory=\ncrap,=Poor=\ngreat product,=VeryGood=\nL'Oral Voluminous Waterproof Mascara,=Poor=\nWorks as well or better than expensive brands,=Excellent=\nIt's okay,=Good=\n\"Dove's Deep Moisture, Nourishing Body Wash.\",=VeryGood=\nWorks great!!!,=VeryGood=\nCan You Really Tell...,=Good=\nDidn't see any results,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nBack Acne Problem,=Good=\nAt least they came fast,=Poor=\nOkay For Now,=Good=\nwaste of money,=Poor=\nDoes what it says....,=Good=\nVery hard to keep it on your head when set on high,=Good=\nlosing my tan on this stuff,=Unsatisfactory=\nLove this!!,=Excellent=\nLOVE LOVE LOVE,=Excellent=\ngreat for light brown hair,=VeryGood=\nYummy,=Excellent=\nToo big and not enough power!,=Poor=\nVegan Nail Lacquer,=Good=\nReally Good!,=Excellent=\nAmazing at any price!!  The BEST self tanner in 20 years.,=Excellent=\nWorks Well - But With Issues,=Good=\nBristles Too Soft to Do Much,=Unsatisfactory=\nlittle too orange,=Good=\nWEN User for LIFE,=Excellent=\nTOO GREASY,=Unsatisfactory=\nsultry,=Excellent=\nI love Cruising,=Excellent=\ngreat,=Excellent=\nNot what I was looking for,=Unsatisfactory=\nNot worth the money!,=Poor=\nNot remarkable,=Good=\nNope,=Unsatisfactory=\nflakier than the brown version,=Good=\n\"Excellent drying time, but so much static it is unusable\",=Poor=\ncumbersome design,=Unsatisfactory=\nEasy to use,=VeryGood=\nI don't know about this stuff,=Good=\nThanks goodness can go in sun again,=VeryGood=\ndid not last,=Unsatisfactory=\nSuper product and will continue to purchase it from AMAZON,=Excellent=\nAn okay product,=Good=\nLove it but too expensive for my go to soap,=VeryGood=\nNot great,=Unsatisfactory=\nNot as good as I thought,=Good=\nGets Rid of Odor,=Excellent=\nlove love this stuff,=VeryGood=\n\"Light Hold, Moisturizing Shine\",=VeryGood=\n\"Soft, smooth skin in winter.\",=Good=\nWouldn't order again,=Unsatisfactory=\nGood But NOT 100% Pure,=VeryGood=\n\"Get rid of the \\gunk\\\"\" in your hair!\"\"\",=Excellent=\n\"not worth the big price tag, used for a month no change\",=Unsatisfactory=\nYummy scent,=Excellent=\nOMG,=Poor=\n\"Color matches, but crumbles off quickly and fades\",=Unsatisfactory=\nSaved my piercings,=VeryGood=\nNot well-pigmented,=Unsatisfactory=\nFelt tip pen,=Unsatisfactory=\nMostly beautiful curls ruined by crimping my style.,=Good=\nBetter product out there...,=Good=\nMy favorite still after 7 years,=Excellent=\nReduces frizz and tangles,=Excellent=\nOlay Regenerist Deep Hydration Regenerating Cream Facial Moisturirzer 1.7...,=VeryGood=\nLove it!,=Excellent=\n\"Flat Finish, rubbed off\",=Poor=\nMine Is Old but Good,=VeryGood=\nLove Earth Science products...,=Excellent=\nNot strong enough for active people,=Good=\nfirst aid,=VeryGood=\nalmost in love..,=VeryGood=\ncheap product,=Poor=\nI  brought this based on the reviews i saw on youtube,=Good=\nProbably Not the Right Product For Me,=Good=\n\"Best toner I have found so far, but expensive\",=Unsatisfactory=\nPart of my hairwashing regimen,=VeryGood=\nWorks as expected.!,=VeryGood=\nNo,=Poor=\nIt's an okay product,=Good=\nDisappointed,=Unsatisfactory=\n\"Good hold, smooth results, beautiful colors!\",=Excellent=\nI love it,=Excellent=\nHorrible,=Poor=\n\"This product is truly for \\mixed chicks\\\"\"\"\"\",=Poor=\nSurprisingly Pleased,=Excellent=\n\"Meh, rather weak\",=Good=\ngood price,=VeryGood=\n\"Nice, light perfume\",=VeryGood=\nCurl Activator,=Poor=\nLove it!,=Excellent=\nCLASSIC YET FRESH!,=Excellent=\nBottle only 2/3 full.,=Poor=\nLied to by other buyers of this product,=Poor=\nvery GOOD product!,=Excellent=\nDecent..,=Unsatisfactory=\n\"Great product, great price!\",=VeryGood=\nFrom bad to worse.,=Poor=\nFabulous Darling,=Excellent=\nNot for itchy scalp,=Good=\nWorthless,=Poor=\n\"Does not work, Smell Gross\",=Poor=\nGreat color; chips easy!,=VeryGood=\nDONT EVEN PRESS BUY!!,=Unsatisfactory=\nIt's an oil- that's about it!,=Good=\nGood Lipsloss,=VeryGood=\nJust started using it,=VeryGood=\nIt's OK,=Good=\nHORRIBLE..,=Poor=\nGood Stuff!,=VeryGood=\nBetter alternatives available,=Unsatisfactory=\nGood Product,=Excellent=\nNo result,=Good=\nGreat product for you and gifts for sisters/friends,=Excellent=\nBargus,=VeryGood=\nMediocre Shampoo,=Unsatisfactory=\nDried my hair out terribly and color was not as expected,=Poor=\n\"Very heavy, smells terrible\",=Poor=\nNot great,=Unsatisfactory=\nOnly The Lights Work  :o(,=Poor=\nPretty good hand and nail cream,=VeryGood=\nBang for your buck but very low quality!,=Good=\nThis stuff sucks,=Poor=\n\"They looked beautiful, but weren't good quality\",=Unsatisfactory=\nClarifying Shampoo,=Excellent=\nEwww,=Unsatisfactory=\ngood when you are very dry,=VeryGood=\nUseless,=Poor=\nDoes the job,=VeryGood=\nNifty little sponge,=VeryGood=\nMeh..,=Good=\nI like how scrubby it feels but,=Good=\nHas become a necessity for me,=Excellent=\nAmazing!,=Excellent=\nAwesome scent and it works!,=Excellent=\nDefinitely not for my hair type,=Good=\nYour slightly better than average body wash,=Good=\ncheap and you pay what you get,=Good=\nNot what I expected.,=Poor=\nIn a word ... AWESOME!,=VeryGood=\nGritty!,=Unsatisfactory=\nHandle optional!,=Excellent=\nDon't waste your money,=Poor=\nNice Lather,=Good=\n\"Works, but won't stay on my nails\",=VeryGood=\nDefinitely a superior product.,=Excellent=\n\"Decent detangler, NOT a conditioner\",=Poor=\nNot for Me,=Poor=\nDidn't notice any difference.,=Good=\nMascara is soft but not full,=Unsatisfactory=\nDamaged product,=Poor=\nNice Moisture!,=VeryGood=\nWill not purchase again.,=Unsatisfactory=\nBought 6 colors and remover!,=Poor=\nJury still out.,=VeryGood=\nWhere has this been all my life?,=VeryGood=\nGreat Smell,=VeryGood=\nSmells.,=Unsatisfactory=\nHate it,=Poor=\nI love the heck out of this stuff,=Excellent=\nNot that great but not the worst.,=Good=\nNot as depicted,=Unsatisfactory=\nBeautiful blue,=Excellent=\nSmells horrible but does great things for my hair!,=VeryGood=\nTangles are gone,=Excellent=\nGreat Texture,=VeryGood=\ncreamy and non greasy,=VeryGood=\nNo effect?,=Unsatisfactory=\nIts ok,=Good=\nnot for very dry skin,=VeryGood=\nBROKE AFTER A FEW MONTHS!,=Unsatisfactory=\nJust Okay,=Unsatisfactory=\nGood so far!,=VeryGood=\nwill keep purchasing this,=Excellent=\nMakeup-ish,=VeryGood=\nLove this cream,=Excellent=\n\"Works great while it works, then it doesn't\",=Unsatisfactory=\nIt's ok,=Good=\nNot as good as a pencil,=Unsatisfactory=\nGreat,=Excellent=\n\"Feet, good. Hands, problems.\",=Good=\nI don't know....,=Unsatisfactory=\nWhere is it?  I haven't received it yet,=Poor=\nWorked pretty well,=VeryGood=\nthis stuff doesn't really work,=Unsatisfactory=\nI would never buy this again,=Poor=\nWorks & does make a difference,=VeryGood=\nDidn't Work for Me,=Unsatisfactory=\nCaused Breakage on My 4C Natural Hair,=Good=\nToo light,=Good=\nNot that great,=Good=\ncheap and work,=Excellent=\nVery satisfied,=VeryGood=\n\"Not bad,\",=VeryGood=\n\"Love, love!!\",=Excellent=\nColor is unusual,=Good=\nEssie!,=Excellent=\nHeadache in a bottle...,=Unsatisfactory=\n\"Okay, but not perfect.\",=VeryGood=\nBest,=Excellent=\nGreat product,=Excellent=\nDidn't care for it,=Unsatisfactory=\nLight citrus smelling lotion; do not use after shaving legs!,=Good=\nLike the smell,=Excellent=\nBroke Out,=Unsatisfactory=\nThis is not natural.  Always check the ingredients.,=Unsatisfactory=\nMeh...it's ok as a revitalizer to me,=Good=\ndr hauschka moisturizing day cream,=Poor=\nkeeps colored hair healthy  PRICE INCREASE?!,=Good=\nNot guite that good,=Good=\nA never will purchase again,=Poor=\nnothing special,=Unsatisfactory=\nSmaller than expected.,=VeryGood=\nLove it!,=Excellent=\n\"Decent, but I wish they would bring back the original formulation\",=Good=\nYikes,=Poor=\nI don't like cause me breakout,=Poor=\nnice,=Excellent=\nEconomical night cream that does a pretty decent job at reducing or eliminating fine lines,=VeryGood=\nWork great...,=VeryGood=\nNice smell nice taste,=Excellent=\n\"Not the worst, but not the best\",=Good=\nGood idea-too expensive!,=Good=\nBasically a Sunscreen,=Good=\nI don't care to wear makeup...,=Unsatisfactory=\nLove this stuff,=Excellent=\nNot my favorite,=Unsatisfactory=\nthis color is AMAZING,=Excellent=\nFour Stars,=VeryGood=\nNot all that,=Good=\nIt's fine,=Good=\n\"Great smell, not bad effectiveness\",=VeryGood=\nA slippery slope,=Poor=\nShampoo,=Good=\nITS DOESNT WORK,=Unsatisfactory=\nlove,=Excellent=\nWas disappointed after reading all the great reviews,=Good=\nKeep looking.....,=Poor=\nSo far so good,=VeryGood=\nAwsome!,=Excellent=\nGreat Inexpensive Cleanser,=Excellent=\nConvenient,=Good=\nDidnt work,=Poor=\nSlightly Moisturizing,=Good=\nNO GROWTH IN SPITE OF CONTINUED USE,=Unsatisfactory=\nI am not impressed!!!,=Poor=\nIdeal,=Excellent=\nRubs in easily and protects pretty well,=VeryGood=\nnot impressed,=Unsatisfactory=\nThey are ok,=Good=\ngreat caly much better than misk,=VeryGood=\nSucks,=Poor=\nExcellent,=Excellent=\nI use this on my graying eyebrows,=VeryGood=\nNo Cantu!,=Unsatisfactory=\nSo Far So Good,=VeryGood=\nNothing Special. I saw it locally....,=Poor=\nWorked well for short time,=Good=\nE-Cloth Kitchen Rags,=Good=\nso painfull...,=Good=\nNever without this (use subscribe and save),=Excellent=\n\"Good product, container made of a low quality material. Amazon should send an optimal product, that includes its container!\",=VeryGood=\nIs pass...,=Poor=\nSmells like mens cologne,=Unsatisfactory=\nPretty.,=Excellent=\nHeavenly all the way around in both feel and scent!,=Excellent=\n\"NOT the classic Ponds, FULL of abrasive chemicals\",=Poor=\nReally good.,=Excellent=\nAwkward,=Unsatisfactory=\ndouble toe straightener,=Unsatisfactory=\nA waste of $,=Poor=\nMostly for my beard.,=VeryGood=\nOnce again I'm fooled by advertisements..,=Unsatisfactory=\nGreat color.,=Excellent=\nMaybelline Super Stay The Jury's Still Out,=Good=\nZeno actually works!,=VeryGood=\nstings my eyes,=Poor=\nAwesome fall color,=Excellent=\nThe Best Make-Up on the Planet,=Excellent=\nSmells great,=Good=\nGreat Product for Every Season,=Excellent=\nVERY HARMFUL 7.8% of Octinoxate,=Poor=\nTerrible product,=Poor=\nUseless,=Poor=\nnot that great,=Unsatisfactory=\nrefreshing,=VeryGood=\nI cannot understand why others may like it,=Unsatisfactory=\n\"Great if you want to go dark, but not too dark\",=Excellent=\ngreat polish,=Excellent=\nDoesn't cover very well,=Unsatisfactory=\nSome colors are almost unwearable...,=Good=\nWorks for my very dry skin in a very dry climate,=VeryGood=\nHigh quality brush,=Excellent=\nLovely,=VeryGood=\nMy go-to shampoo,=Excellent=\nA fragrance for a Goddess,=Excellent=\n\"It's what it's supposed to be, if nothing special\",=VeryGood=\nA bit old ladyish,=Good=\nSO-SO FOR HER,=Good=\nHuge,=Good=\nSmells great.,=Good=\n\"Fast, but not very glossy.\",=VeryGood=\nMy Husband's Bowel Difficulites were much better in just two days,=Excellent=\nOkay,=VeryGood=\nGloopy and sticky,=Unsatisfactory=\nexactly what im looking for,=Excellent=\nGood Foaming Soap,=VeryGood=\nI Like It More Than Expected,=VeryGood=\nEucerin,=Excellent=\nGood in the short run,=VeryGood=\n\"Love the Oil, Not a 6pk as advertised\",=Unsatisfactory=\nPretty Good`,=VeryGood=\nSmells nice but a bit too heavy for me,=Unsatisfactory=\nSide effect,=Poor=\nvery good no sulfate shampoo,=Excellent=\nChanged Formula,=Good=\nA huge disappointment,=Poor=\nHorrible change,=Poor=\nColor Not as Described. Too Light and Too RED!,=Unsatisfactory=\nI really like Olay products!,=Excellent=\nBest toner I have ever purchased,=Excellent=\nSmelled like relaxer,=Poor=\nCrystal clear with NO sediment or cloudy stuff!!!,=Good=\nA very reluctant goodbye :(,=Poor=\nToo oily to use as a facial wipe,=Unsatisfactory=\nGood On The Hair But Not On The Skin/ Not Good For Eczema,=Unsatisfactory=\nHorrible,=Poor=\nnice,=VeryGood=\n\"Works sort of, for a while anyway\",=Good=\nNot My Favorite,=Good=\n\"Come on Olay, why the harmful ingredients??\",=Poor=\nTHIS STUFF IS SUPER STRONG,=Good=\nYou won't regret it,=Excellent=\nI'm happy,=VeryGood=\nRegular,=Unsatisfactory=\nGreat toner,=VeryGood=\nThe worst stuff ever,=Poor=\nSmelly and sticky..;,=Unsatisfactory=\nExpensive dissapointment,=Poor=\nVery drying soap,=Poor=\nI am addicted to its wonderful smell!,=Excellent=\nMajor Design Flaw - Hanging Position Allows Fallout from Main Compartment!!,=Unsatisfactory=\n\"Works, but....\",=Good=\nGreat Stuff!,=Excellent=\nWaste of money and time,=Unsatisfactory=\nTweezerman is good,=VeryGood=\nLovely Design,=Unsatisfactory=\nDifferent than when purchased from salon,=Unsatisfactory=\nExcellent and recommendable!,=Excellent=\nmaybelline expert eyes mascara remover,=Excellent=\nFinally!,=VeryGood=\nAndis 1.5-inch Pro Flat Iron,=Unsatisfactory=\nPerfection In a Jar.,=Excellent=\nNot bad for travel or touch ups,=VeryGood=\nNo better than regular hair powder,=Unsatisfactory=\nexcellent moisturizer,=Excellent=\nthis is just oil with an AWFUL SMELL,=Poor=\nBest Top Coat but bottle drys up fast!,=VeryGood=\nLiquid Vinyl- Poor consistancy and color,=Poor=\nBlemish Zapper!,=Excellent=\nmade my skin really sensitive,=Poor=\nMade us itch...then break out. Pass on this one.,=Poor=\nDOESN'T WORK,=Unsatisfactory=\nLove this brush.,=Excellent=\nDidn't work for me,=Unsatisfactory=\n\"Great product, but ruinous to my nails\",=Unsatisfactory=\nWorst Eye liner I EVER used,=Poor=\n\"Aubrey is NOT the best, but it sure is the most expensive!\",=Poor=\nI like the way it makes my skin feels!,=VeryGood=\nskin miracle,=VeryGood=\nSolved my skin bumps! READ UPDATE at the end...,=Good=\nItem no entregue,=Poor=\nBad shipping?,=Unsatisfactory=\nGood for the money.,=VeryGood=\nGreat all purpose moisturizer,=Excellent=\nRed hot color,=Excellent=\nSeche Vite is Better,=Unsatisfactory=\nWow! Cheerful color!,=Excellent=\nawesome,=Excellent=\nI love it,=Excellent=\nMediocre Eye Cream...,=Good=\nSmooth,=VeryGood=\nGreat product!,=Excellent=\nIt's OK.,=VeryGood=\n\"Here's the key:  MOISTURIZE, MOISTURIZE, MOISTURIZE\",=VeryGood=\nBest top coat so far.,=VeryGood=\n\"Loved it, But No Longer Use it\",=VeryGood=\ntowel lover,=Unsatisfactory=\nDon't see the appeal.,=Good=\nThe vanilla scent isn't a good one,=Unsatisfactory=\nGreasy,=Unsatisfactory=\n\"\\Strange Smells Are Happening,\\\"\"  or  \\\"\"People are Strange, When You Use Jasmine\\\"\"\"\"\",=Unsatisfactory=\nFoi um pedido,=VeryGood=\n\"If I could give it zero stars, I would!\",=Poor=\nLove it for 8 years!!,=Excellent=\nsmoother skin fast!,=VeryGood=\nNot Sure Yet....,=Good=\nmaybe not necessary,=Unsatisfactory=\nAverage top coat,=Good=\nNot too shabby.,=Good=\n\"Neutrogena Body Oil, Light Sesame Formula\",=VeryGood=\nFirst impression,=Poor=\nSmh,=Poor=\n\"I mean 1 lb of bobby pins, you can't go wrong.\",=Excellent=\nGreat product,=VeryGood=\nBroke within an hour or using,=Poor=\nCovrer girl Lip terrible not buy it,=Poor=\nThis is not for everyone,=Unsatisfactory=\nterrible smell,=Unsatisfactory=\nVery nice,=VeryGood=\nlove it great smell,=Excellent=\nLOVE BareMinerals,=Excellent=\nNot what I expected...,=Good=\nBest mascara,=Excellent=\nLove love love,=Excellent=\nIt truly lives up to the hype!!,=Excellent=\nskip it&#8230;,=Unsatisfactory=\nThree Stars,=Good=\nNot good for my hair,=Unsatisfactory=\nTerrible!,=Poor=\nWell&#8230;!,=Unsatisfactory=\nThree Stars,=Good=\nGreat clarifying shampoo.,=Excellent=\nUnhealthy,=Poor=\n:( why me,=Poor=\nClumpy and comes off,=Unsatisfactory=\nLove it!,=VeryGood=\nExcellent,=Excellent=\nGreat idea!,=Good=\nSeki Edge Blackhead Remover,=Good=\nVery hard to wash of your face with no results,=Poor=\nAwesome,=Excellent=\nsafe but kinda yucky,=Good=\nGreat smelling moisturizer but..,=Poor=\nHurts my face,=Poor=\nNot good,=Unsatisfactory=\nString cheese,=Unsatisfactory=\nFine for cheap scrunchies,=Good=\nOPI duh.,=Excellent=\nGot here quick!,=VeryGood=\nSeche vite us petty good,=VeryGood=\nSave your money!,=Poor=\nLove this stuff!,=Excellent=\nFantastic!,=Excellent=\nUnimpressed -- returning it,=Good=\nNo appreciable results,=Unsatisfactory=\ngaggggg!!!!!!!!!,=Poor=\nAwful smell,=Poor=\nPlastic and flimsy.  I'm disappointed.,=Unsatisfactory=\nDermatilomania goodbye,=Excellent=\nSmall and expensive,=Unsatisfactory=\nSoftens skin for sure,=Excellent=\nJust Ok. Pricey,=Unsatisfactory=\nRan out within a month,=Poor=\nLove the sponge,=VeryGood=\nToday is 6/2 - Bottle Dated 4/28 - No Results Yet,=Poor=\nAWESUM!!,=VeryGood=\nExcellent  face cleanser,=VeryGood=\nCondition was terrible,=Poor=\nDidn't cover gray,=Poor=\nPretty Good Soap,=VeryGood=\nNot what I expected!,=Good=\nPleasant Shampoo,=VeryGood=\nInteresting product,=VeryGood=\nNot My Favorite Lotion,=Good=\nOlay Regenerist,=Excellent=\nBad product,=Poor=\nThis works!!!,=Excellent=\nA ProActiv for Healthy People who Care About Animals and the Environment,=Excellent=\nGreat for beards!,=VeryGood=\nColor red depends on the color of your hair,=VeryGood=\nTerrible paste like,=Poor=\nNot like the first,=Good=\n\"Eh, not so great\",=Unsatisfactory=\nLoved the old formula hate the new one,=Good=\nUsed this for years,=Excellent=\nworks great,=VeryGood=\nDoesn't fit,=Poor=\nWorks pretty well.,=VeryGood=\nJamaica Me Crazy and Big Spender,=Excellent=\n\"Instant Face, Neck and Eye lift\",=Poor=\nRegret to stick with it so long...,=Poor=\nHydrates but eye-bags appeared,=Unsatisfactory=\nNot sure..,=Good=\nbeeeeeepboopboop,=VeryGood=\nMagic wand for your hair.,=Excellent=\nNOT organic,=Poor=\nExactly what I expected,=Excellent=\nFunny smell,=Unsatisfactory=\nYuck,=Poor=\nCool....,=VeryGood=\nDoes Wonders For the Skin,=VeryGood=\nPigment Gel,=Good=\nGreat set,=Excellent=\nDidnt remove any makeup!,=Poor=\n\"not great, but not worthless either\",=Good=\nPerfect,=Excellent=\nWorked for a year..almost.,=Poor=\nBad Experience.,=Poor=\nGood.,=VeryGood=\nCan't live without it!,=Excellent=\nThis fine mist spray is versatile and effective,=Excellent=\n\"Doesn't curl, doesn't blow dry...kinda just halfway done.\",=Good=\nits okay,=Good=\nIt's OK,=Good=\nBrand,=Good=\nNotice how they don't tell you what the ingredients are? Because it's baking soda & water! Does nothing to neutralize!,=Poor=\nSo far so good!!,=Excellent=\nHopefully optimistic - Disappointed in the end,=Unsatisfactory=\nso drying,=Unsatisfactory=\ndoes not condition my hair very well,=Unsatisfactory=\nnot a favorite,=Unsatisfactory=\nLovely but,=Good=\nWorks well enough! Just not for the price.,=Good=\nCan't turn back time.....,=Poor=\n\"Good price, lower quality\",=Unsatisfactory=\ndoes not work well,=Poor=\nVery comfortable eye cream,=Excellent=\nIt Works,=VeryGood=\ntoo small,=Unsatisfactory=\n\"Didn't work for my issue, dangit...\",=Unsatisfactory=\nAmazing product - do not use with AHAs,=Excellent=\nDid not like it,=Poor=\n\"Don't hate it, but wouldn't buy it again\",=Unsatisfactory=\nProduct works but fragrance is terrible,=Poor=\nNot quite for me,=Unsatisfactory=\nNot my first choice,=Good=\nNice sheen,=VeryGood=\nWorks well. Kinda feels icky once it's on the ...,=Good=\nyummmmmmmm,=Excellent=\nPink in a Bottle!!!,=VeryGood=\nNot bad,=Good=\n\"Feels good , smells nice, Not sure about cellulite though\",=Good=\nNot for me,=Poor=\nDOES NOT HELP WITH ACID REFLUX,=Unsatisfactory=\nA sunscreen that doesn't leave my face shiny,=Excellent=\none of my Faves.,=Excellent=\nThe best for removing mascara!,=Excellent=\nGreat Perfume,=Excellent=\nDidn't lighten my skin at all,=Poor=\nA nice body wash,=VeryGood=\nNeutrogena Pore Refining Cleanser 200ml/6.7oz,=Excellent=\nGreat glue for eyelashes,=Excellent=\nCaused Hair Loss,=Unsatisfactory=\nGreat product for a home facial,=VeryGood=\nSmells like bananas,=VeryGood=\nAffordable Detangler,=VeryGood=\nGood for covering dark under eyes!,=Good=\n\"So far, so good.\",=VeryGood=\nNice Deep Blue,=Excellent=\nNegative stars if possible,=Poor=\nONLY THING THAT WORKS,=Excellent=\nNioxin Thermal Bliss,=Good=\n\"Good lotion, but it didn't solve my problem\",=Good=\nNOT WHAT I EXPECTED!,=Unsatisfactory=\nIts ok.,=Good=\nLeave in longer if you have black/dark brown hair,=Good=\nNot what I expected,=Unsatisfactory=\nGlycolic Acid/Salicylic Combination Better than Benzoyl Peroxide,=Excellent=\nVery Bright!,=VeryGood=\nPleasantly Surprised,=VeryGood=\nanother great suave story,=Excellent=\nDry Shampoo Trial Gone Wrong,=Poor=\nBetter Living is Worse Living,=Poor=\nsmells great and safe,=Excellent=\nMusky Sweet Smell,=Unsatisfactory=\nWorst make up product ever,=Poor=\nNot resilient,=Good=\nStill smells like Tanner,=Poor=\nDoes not work,=Poor=\nWorks well but spendy,=VeryGood=\nworst bottle design for product,=Poor=\nPretty Okay Face Wash (B- Grade),=Good=\namazing,=Excellent=\nThe best,=Excellent=\nMeh,=Good=\nSmooths my wrinkles.,=VeryGood=\nnot very sturdy,=Good=\n\"depends on metabolism, medications peels off too fast\",=Good=\nVery good cream.,=VeryGood=\n\"Didn't work, WARNING!!!\",=Poor=\nGood product for the price.,=VeryGood=\nOw and Wow,=VeryGood=\nIt works!,=VeryGood=\nAwesome Sunscreen!,=Excellent=\nHydrates While You Are Sleeping,=Excellent=\nNot impressed...,=Poor=\n\"Nice scent, feels great\",=VeryGood=\nDoes what it says it does,=Good=\ngood but strong,=Unsatisfactory=\nVery nice!,=Excellent=\n2nd Chi Blowdryer to die on me,=Unsatisfactory=\ngood,=VeryGood=\nLuminous And Lasting,=VeryGood=\nzoya armor topcoat,=Excellent=\nLove It,=Excellent=\nIt's to bad because I really loved the smell.,=Unsatisfactory=\nExcellent product for the price and 100% Vegetarian!,=Excellent=\nYikes...,=Unsatisfactory=\nDaily Moisture,=Excellent=\nI always choose Maybelline,=Excellent=\nCannot use,=Poor=\nFantastic!,=Excellent=\nOff With His Head,=Good=\nNope,=Poor=\nGreat protector!,=VeryGood=\nTerrible Shipping Rate,=Unsatisfactory=\nFace Feels Amazing,=VeryGood=\nREMOVE EYE MAKE IN ONE SWIPE!,=Excellent=\nEasy to use!,=Excellent=\nPerfect for tangled hair!,=Excellent=\nregenerist serum is the best,=Excellent=\n\"Works good,but it smears bad!!!\",=VeryGood=\nTERRIBLE.,=Poor=\nExcellent All Around,=Excellent=\n\"A good, reliable product, but not life-changing.\",=Good=\nAwful,=Poor=\nNice but still waiting for more results,=VeryGood=\nNot working for puffy eyes,=Unsatisfactory=\nDon't take the brow-beating!,=Good=\ngreat,=Excellent=\nLuxurious,=Excellent=\nOILY,=Unsatisfactory=\nGave me a rash,=Good=\n\"Uncomfortable vibrations, too strong scent, runs into eyes\",=Poor=\nFoaming?,=Good=\nGood but color a bit too light ... for me,=Good=\nYou get what you pay for..,=Unsatisfactory=\nAWESOME product,=Excellent=\nvery nice hair dryer UPDATE,=VeryGood=\nWTF???,=Poor=\ngood stuff,=VeryGood=\nToo big,=Poor=\nDo not order,=Poor=\ni like it an all ...,=Good=\nSpornette Cushion Brush,=Excellent=\nLove this cream!,=VeryGood=\nI don't know..,=Unsatisfactory=\nread and follow directions,=Excellent=\nIts a WET SET for your brows...,=Good=\nGood stuff,=VeryGood=\nGreat soap,=VeryGood=\nGood,=VeryGood=\nExcellent Choice,=Excellent=\nEWG rating is 7 (not great),=Unsatisfactory=\nGreat product for sensitive skin,=Excellent=\nUse lint-free cloth instead,=Unsatisfactory=\ncould have been better,=Unsatisfactory=\nDid not help at all,=Poor=\nKnot for me,=Unsatisfactory=\nLil Too Squeaky Clean,=Good=\nAmazon needs to edit the poduct!!,=Excellent=\nLove this stuff,=Excellent=\nStrong scent,=Unsatisfactory=\nNot good for fine hair..........,=Unsatisfactory=\nWasn't comfortable using it once I saw the ingredients,=Poor=\nUnpleasant smell,=Good=\nSheer Slight Pink Sheen,=Unsatisfactory=\nBoo.,=Poor=\nNo good,=Poor=\n\"LOVE IT, LOVE IT, LOVE IT!!!\",=Excellent=\nNOPE!,=Poor=\ngreat for dry skin too,=Excellent=\nNot worth the money,=Poor=\ninexpensive resource,=Good=\ndid not like,=Unsatisfactory=\nMy hair liked it but my scalp didn't,=Unsatisfactory=\nWorks extremely well.  Gets the stink out of your stinky pet but does not overwhelm you with perfume!,=Excellent=\ndon't bother,=Poor=\nFalse packaging,=Good=\nhuh?,=Poor=\nWould Not Recommend,=Poor=\nLove this scrub,=Excellent=\nBeauty in a bottle,=VeryGood=\nnot the same as original rejucacote,=Poor=\nNot worth the money,=Good=\n\"Protects, Mild Scent, Mostly Natural\",=VeryGood=\nDOESNT STAY PUT--WATERPROOF???,=Poor=\nToo big even for long hair,=Good=\nface steamer,=Good=\nOPI Up Front and Personal nail polish,=VeryGood=\nWorks!,=Excellent=\nNot in love,=Unsatisfactory=\nIt is okay,=Good=\nBest At-Home Hair Color,=Excellent=\n\"Not for limp, fine hair\",=VeryGood=\n\"Neutrogena Clean Replenishing Deep Recovery Hair Mask, 6 oz\",=Excellent=\nMaybe a bad batch?,=Poor=\nnever received,=Good=\nIt's just Ok,=Unsatisfactory=\nHusband loves!!,=Excellent=\n\"inoffensive, pina colada plus mango scented but perhaps too gentle to cleanse\",=Good=\nI would never buy again,=Poor=\nGreat Mirror,=VeryGood=\nDoesn't actually clear away the blackheads,=Good=\nIngredients...,=Poor=\nSo orange...,=Unsatisfactory=\nDid not live up to the hype.,=Unsatisfactory=\nPersian Burgandy (Dark Auburn),=Excellent=\n\"Effective, gentle, but a bit oily\",=VeryGood=\nshea butter,=Excellent=\nokay but color doesn't last long,=Good=\nNot for Thick Curly Hair,=Unsatisfactory=\nHair dresser's dream product,=Excellent=\nBroke Me Out,=Poor=\nNice brush,=VeryGood=\nWorks,=Excellent=\nquality product,=Excellent=\nI did not care for it.,=Unsatisfactory=\nSomewhat overpriced for results,=Good=\n\"Good product, but does not come with thermal bag!\",=VeryGood=\noverated,=Unsatisfactory=\nGood overall brush,=Excellent=\nJunk,=Poor=\nFoams up nice....does the job....,=VeryGood=\nLove this fragrance.,=Excellent=\nDried out fast,=Unsatisfactory=\nDidn't agree with my skin.,=Poor=\nGood for young skin,=Good=\nReveiws...,=VeryGood=\nNano dryer,=Unsatisfactory=\nclogs my pores.,=VeryGood=\nListen to the reviews and save your money!!!,=Poor=\nA BEAUTY EDITOR'S PICK,=Excellent=\nMary Kay Oil Control Lotion,=Poor=\ngentle cleanser,=Good=\n\"Nope, not worth it! Moving on!\",=Good=\nWhat.Happened?,=Unsatisfactory=\nOPI rocks,=Excellent=\nHubby loves almost as much as I do!,=Excellent=\nEstee Lauder convert,=Excellent=\nFun Green,=Excellent=\nmy new favorite!,=Excellent=\na waste,=Unsatisfactory=\nGreat Body Moisturizer,=VeryGood=\nThis stuff is solid.,=VeryGood=\n\"It's nice, but...\",=VeryGood=\nJust painful.,=Poor=\nMy Beautiful Lipstick,=Excellent=\nGood item,=VeryGood=\nenjoyable,=VeryGood=\nI liked Davines Momo Moisturizing Curl Enhancing Serum,=VeryGood=\nGreat coverage but tends to clog pores,=VeryGood=\nWorst thing ever,=Poor=\n\"Makes my hair nice, but \\miracle\\\"\"? no.\"\"\",=VeryGood=\nGreat product!,=Excellent=\nNot sure...,=Unsatisfactory=\nFades Away,=Good=\nits ok,=Good=\ngood but don't like the smell,=Good=\nGood product.,=VeryGood=\nAmazing,=Excellent=\nit makes you hair look good...,=Unsatisfactory=\nDid not work for me,=Unsatisfactory=\nInstructions in Chinese Only,=Poor=\nNot That Exfoliating,=Good=\n\"Great product, but caused acne.\",=VeryGood=\nCan't use it.,=Unsatisfactory=\nGreat for sensitive skin BUT...,=VeryGood=\nLeaves Me Needing a Wash,=Poor=\nworks on itchy scalp,=Good=\nI thought it was better,=Good=\nThey Slip,=Unsatisfactory=\nRubbish!,=Poor=\nGreat Product!!!,=Excellent=\n\"Smells great, works great\",=Excellent=\nnot my fav product,=Poor=\nWashed out color,=Unsatisfactory=\nShiny,=VeryGood=\nLove,=Excellent=\nPositively intoxicating,=Excellent=\nMake my ends soft but I hate the smell,=Good=\nHard as rock!,=Poor=\nLeaves flakes in hair!!,=Poor=\nSeems fine,=VeryGood=\nIts alright,=Good=\nDon't waste your money,=Unsatisfactory=\nGreat smell,=VeryGood=\nDisappointed,=Poor=\nDo you need a brush head pack?,=VeryGood=\nAlmost but no cigar,=Unsatisfactory=\nNice addition to shower :),=Excellent=\nAwesome!,=Excellent=\nNot good,=Unsatisfactory=\nI like it,=VeryGood=\nThis brush needs:,=Unsatisfactory=\ncolor is a bit off,=Unsatisfactory=\n\"Love, but not enough\",=VeryGood=\nSmells like heaven!,=VeryGood=\nLove this Product,=Excellent=\n\"Very Tiny, but Nice Applicator\",=VeryGood=\nNever used,=Unsatisfactory=\nAwesome Product!,=Excellent=\neh,=Good=\nhair product,=Excellent=\nAcne Inducing on face,=Unsatisfactory=\nThis was highly recommended by my doctor for my condition,=Unsatisfactory=\nIt's nice,=Good=\nSoap for Days,=Excellent=\nReally harsh and rough!!,=Poor=\nEh..So-So..,=Unsatisfactory=\nPowder,=Poor=\nCleansing Conditioner- Ew,=Poor=\nBenzoyl Peroxide > Salicylic Acid,=Poor=\nMy Boyfriend likes it for the acne he gets on his back,=VeryGood=\nThis product is really nice,=VeryGood=\nNot a fan.,=Poor=\n\"Sunscreen yes, but immediate redness relief?\",=Good=\nSurprised - Love this,=Excellent=\nawesome,=Excellent=\nNot for fine hair,=Poor=\nHoly grail in dry climate,=Excellent=\nVery Good,=VeryGood=\nI like it...,=VeryGood=\nIt's not Pink Perfection,=Unsatisfactory=\nnice perfume,=VeryGood=\nBetter than OPI for me,=Excellent=\nNot like the nicer penciles,=Unsatisfactory=\nUnsafe and toxic ingredients,=Poor=\nI like the way it feels,=Good=\nOne Star,=Poor=\nJust fine - didn't help with eczema,=Good=\nworked well for travel,=VeryGood=\n\"Great colors, not great polish\",=Unsatisfactory=\n\"So far, so good\",=VeryGood=\nGorgeous,=Excellent=\nNice little hair dryer,=VeryGood=\nReally shiny top coat,=VeryGood=\nInexpensive Yet Functional,=Excellent=\nIt's just so-so,=Good=\nDo not recommend!,=Poor=\nNot for me,=Unsatisfactory=\nWow!,=Excellent=\nNail soakers,=Unsatisfactory=\nDON'T LIKE IT,=Poor=\nMay be problematic if you have very sensitive skin,=Good=\nJust okay,=Unsatisfactory=\nLook at my eyes,=VeryGood=\nSO much better than the original,=Good=\nAlways works!,=Excellent=\nIt works!,=VeryGood=\nGood Product,=VeryGood=\nStreaks,=Unsatisfactory=\nNice Quality,=VeryGood=\nNo what I hoped.,=Poor=\nGood but,=Good=\n\"Bought elsewhere, pleased with product\",=VeryGood=\nThese didn't quite work for me,=Unsatisfactory=\nI expected a higher quality product. You get what you pay for. Nothing special about it.,=Good=\nFor older women,=Good=\ngreat brush,=Excellent=\nNot a great hair styling tool IMO,=Unsatisfactory=\nOle Olay! ...,=Excellent=\nWitch hazel is a must have for the medicine cabinet,=Excellent=\nGood buy!,=VeryGood=\nProduct has changed,=Good=\nHad the opposite effect on me,=Poor=\nTerrible Product.,=Poor=\nPremier Dead Sea Stuff,=Poor=\n\"For my lashes, took too many applications..\",=Good=\n1/2 inch curling brush,=VeryGood=\nNot sure if I will buy again,=Good=\nThe perfect lipstick,=Excellent=\nTwo Stars,=Unsatisfactory=\nNice change of pace,=VeryGood=\nNars Casino,=Excellent=\nFull of Parabens. Want a little breast cancer with this lotion ?,=Poor=\nNot what I expected,=Good=\nOne Star,=Poor=\nNot really good,=Unsatisfactory=\nDidn't work for my skin type.,=Unsatisfactory=\ndidn't do anything,=Poor=\nThe perfect contour shade,=Excellent=\ncheap,=Unsatisfactory=\nok,=Unsatisfactory=\n\"Terrible, unusable\",=Poor=\nLove Dr. Bronner's Lavender,=Excellent=\nDidn't work for me ;(,=Poor=\ngarbage,=Poor=\nnot the best product for my skin,=Good=\nDidn't impress me,=Unsatisfactory=\nNothing beats Olay for price and results.,=VeryGood=\nDefinitely helps with dry skin,=VeryGood=\n\"Used it first time yesterday, here are my thoughts...\",=VeryGood=\nGreat reviews,=VeryGood=\nFormula Has Changed,=Poor=\nWhy no SPF in this product?,=Poor=\nVERY Disappointed!,=Poor=\nCan also be used as a Mask!,=VeryGood=\nNEVER AGAIN!,=Poor=\nThis doesn't moisturize enough,=Good=\nWould like it more if...,=VeryGood=\n\"GOOD PRODUCT, BUT NOT SUPER\",=VeryGood=\nMore of a brownzer,=Unsatisfactory=\nReally makes nails hard,=VeryGood=\nGreat product,=VeryGood=\nMade My Hair Crunchy,=Unsatisfactory=\nnice,=VeryGood=\nIt dries.,=VeryGood=\nwell worth it,=Excellent=\nNo eyebrows? This is for you.,=Poor=\n\"Hard, prickly bristles\",=Unsatisfactory=\nClay mask,=VeryGood=\nGood lotion but the smell is annoying and has staying power,=Unsatisfactory=\nShalimar,=Poor=\nGet the job done,=VeryGood=\nProbably just depends on hair type.,=Good=\nOne Star,=Poor=\nNo Results,=Poor=\nLooks and smell like glue but will tame frizzes and leave hair shiny with oil.,=Poor=\nPerfect Gift,=Excellent=\nGood Product!,=Good=\nCream Color was a little different,=VeryGood=\nSeems to work.,=Excellent=\nDramatic Firming Cream,=VeryGood=\nA cute little product but I prefer my BufPuf Gentle.,=Good=\nAverage,=Good=\ncant do without it,=Excellent=\n\"Love the color, not a REAL essie\",=Unsatisfactory=\nCoor is way off how it looked online,=Good=\nLOVE it,=Excellent=\nBetter than Ardell...,=VeryGood=\nNot for face eczema,=Unsatisfactory=\nE.L.F Primer,=Poor=\nAmazing Results,=Excellent=\nFour Stars,=VeryGood=\nWorks ok,=Good=\nmy hair is so soft after daily use for 4 weeks,=Excellent=\nNice texture and scent.,=Good=\nGreat Wand!,=VeryGood=\nLong time user,=Excellent=\nI'm Feelin Blue,=VeryGood=\nSparks innovators,=Poor=\nInsanely good yet mysteriously overlooked,=Excellent=\nBest of ROC,=Excellent=\nTOTAL FIASCO for a so-so brush.,=Poor=\nIt's just okay,=Good=\nGood moisturizer for very dry skin.,=Unsatisfactory=\nOut of Africa Black Shea Butter Soap is too drying,=Poor=\nnoticible difference,=VeryGood=\nVery thick,=Good=\nDisappointed,=Good=\ndont recomend,=Poor=\nstill looking for something to help my dark spots,=Poor=\nok,=Unsatisfactory=\nNice product,=Good=\nnot for every day use,=Unsatisfactory=\nGreat Bronzer,=VeryGood=\nNice product but could be better,=VeryGood=\n\"Sticky Residue, Strong Smell\",=Unsatisfactory=\nBought as a gift and it doesnt work correctly,=Unsatisfactory=\n\"Has Phenoxyethano, worse than any Parabens\",=Unsatisfactory=\nSave your money,=Poor=\nExcellent moisturizer,=VeryGood=\nNot the Best,=Unsatisfactory=\nnot for my acne prone skin,=Good=\n\"Great, but drying\",=Good=\nGreat Light Product at Great Price,=Excellent=\nDid not work at all for me,=Poor=\nSeems good,=VeryGood=\nWayy too clumpy,=Poor=\nMineral oil turns me off..its not for me..here is the website info.,=Poor=\nsucks! no more Sigma for me!,=Unsatisfactory=\nFlimsy tube,=Good=\nDoctor prescribed tips for eczema - not the new Dove!,=Unsatisfactory=\nDries my hair,=Good=\nDidn't work for me,=Unsatisfactory=\n\"Great Product, Bad Packaging\",=VeryGood=\nNice color!,=VeryGood=\na little too fragrant and thick for my taste,=Good=\nIt does help,=VeryGood=\nHorrible,=Poor=\nGreat Color AND hair texture improvement,=Excellent=\nDOESN'T KEEP RED HAIR FROM FADING,=Unsatisfactory=\nHaven't been using product for a long time.,=VeryGood=\nNice for the Price,=Good=\nTo sweet and feminine,=Unsatisfactory=\nOne Star,=Poor=\nChips easily,=Good=\nLOVE THIS,=Excellent=\nDoes not work,=Unsatisfactory=\nhate how it smells,=Unsatisfactory=\ntoo heavy,=Good=\nnot the color i thought,=Unsatisfactory=\nEven my grandma uses it,=VeryGood=\nTested on my husband. No reaction.,=Poor=\nDon't wash your hands,=Poor=\nemery boards are much easier to use,=Poor=\n\"Fun Product, Smooth Skin, but Not Sure that it's really exfoliating as Much as You May Think\",=Poor=\nTerrible top coat. Expect more from opi,=Poor=\nGood Product,=VeryGood=\nYACHT MAN METAL by Myrurgia EDT SPRAY 3.4 OZ for MEN,=Good=\nGood stuff but turned my hair gray-green,=Good=\nFor sophisticated woman,=VeryGood=\nWonderful for the whole family,=Excellent=\nLove my Skin,=VeryGood=\nI wish I had found this sooner!!!,=Excellent=\nI wish it would be more pigmented,=Unsatisfactory=\nLove it!,=Excellent=\nNot for me,=Unsatisfactory=\nWhere's the rest?,=Good=\nA bit blah.,=Good=\nBetter off just squeegying a regular mirror,=Poor=\nGarbage! Don't waste your money!,=Poor=\nNot for Shellac,=Unsatisfactory=\nPerfect for my hair!,=Excellent=\nStrong.,=VeryGood=\nfeels really nourished,=VeryGood=\n\"Neutrogena Clean Replenishing Deep Recovery Hair Mask, 6 oz\",=Excellent=\nGood Product But A Lot Depends on Your Hair,=VeryGood=\nsmells good,=VeryGood=\nThorough for oily skin without being too harsh,=VeryGood=\nLove it.,=Excellent=\nis ok,=VeryGood=\nBest non professional red hair color yet!,=VeryGood=\nDidn't work for me.,=Unsatisfactory=\nDOES THE JOB BUT SO DOES ANY OTHER CONCEALER,=Good=\nClean Feeling,=VeryGood=\n...no difference.,=Unsatisfactory=\nAverage,=Unsatisfactory=\nPump is not good & Product clogged my drain!,=Unsatisfactory=\nThis left a gummy residue in my hair.,=Unsatisfactory=\nJust okay,=Good=\nGreat for KP (keratosis pilaris) on the backs of upper arms,=Excellent=\nTo greasy,=Poor=\ndon't waste your money,=Poor=\nGreat Product and Manufacturer,=Excellent=\nWaste of money,=Poor=\n\"Good formula, questionable color\",=Good=\nWipes were like sandpaper,=Poor=\n\"Mostly Silicone, Not the Best\",=Good=\n\"Awful smell, didn't make a difference\",=Poor=\nI want to like it...,=Unsatisfactory=\nGreat!,=Excellent=\nNot really sure but,=Good=\nmoisturizing oil,=VeryGood=\nNot too fond of this.,=Unsatisfactory=\nreceived a diff product in the mail,=Poor=\n\"I like it, but it seems to dissolve like alka seltzer!\",=Good=\n\"Good Lavender Body Wash, but the lotion is better\",=Good=\nNYX Yellow Concealer in a Jar Review ->,=Good=\nPartially Effective,=VeryGood=\nThe Best Hair Color I've Used!,=Excellent=\nPackage says it causes cancer :(,=Unsatisfactory=\nNatural looking,=Excellent=\nNot too rough,=VeryGood=\nIt's okay but not as good as some other choices,=VeryGood=\nAwkward,=Unsatisfactory=\nNothing great!,=Unsatisfactory=\nSmells like standard Curve,=VeryGood=\nGood for exfoliating.,=VeryGood=\nIt is okay,=VeryGood=\nfrownies,=Excellent=\nBurns my face and eyes,=Unsatisfactory=\nFantastic Brow Enhancer,=Excellent=\nA MUST HAVE BEAUTY ITEM!!!,=Excellent=\n\"Great mask, and great price\",=VeryGood=\nNot for me,=Unsatisfactory=\nim enjoying this,=VeryGood=\nBe Ware  Both Eyes Swelled Up in Hours!,=Poor=\nOne Star,=Poor=\nOk if you like the color,=Good=\nBody Shop bath gloves,=Good=\nSurprising,=VeryGood=\nMisses The Mark,=Unsatisfactory=\ndon't waste your money,=Good=\nAWESOME Lotion,=Excellent=\nWorks better than anything else.,=Excellent=\nDried out and irritated my skin,=Unsatisfactory=\nWife Likes It,=Excellent=\nI like Now Foods Tea Tree Oil 4oz : B/4-Stars!,=VeryGood=\nI Was Excited To Try...,=Good=\nI don't get it.,=Poor=\n\"Johnson's baby shampoo, lavender 20 oz (pack of 2)\",=VeryGood=\nMatch your shade in-person.,=Excellent=\nget the jumbo stick,=Unsatisfactory=\nbad expectation,=Poor=\n\"Good simple 5/8\\ curling iron\"\"\",=Excellent=\nThey are ok...,=Good=\nTemporary FIX only  ...,=Unsatisfactory=\nDay 2 and feeling pretty darn good!,=Excellent=\nGreat Product!,=Excellent=\nok product,=Unsatisfactory=\nMakes my face softer....thats about it,=Good=\nGreat as a tinted moisturizer! Not so great as a face tanner.,=VeryGood=\n\"Doesn't irritate but doesn't remove wrinkles, either\",=Unsatisfactory=\nGood black eyeshadow,=VeryGood=\nToo Gray,=Unsatisfactory=\nWas Not For Me,=Unsatisfactory=\nDamager!,=Poor=\nWear gloves..,=VeryGood=\nGlitter Liner,=Unsatisfactory=\nMakes my face red,=Poor=\nThese Things Are Awesome!,=Excellent=\nGreat Smelling Soap in a Cute Package,=Excellent=\n\"Some drawbacks, but pros outweigh the cons\",=VeryGood=\nPretty limp body wash,=Unsatisfactory=\nGreat conditioner,=VeryGood=\nI LOVE THIS STUFF!!,=VeryGood=\ndisappointed,=Unsatisfactory=\nNothing Like the Picture,=Poor=\nBroke out,=Unsatisfactory=\nDoes not work on my year old stretch marks from pregnancy,=Poor=\nNOT ENAMOURED,=Good=\nDoesn't moisturize very well,=Good=\n$15????,=Poor=\nA Reduction in  Hyperbole,=VeryGood=\nHorrible eyelashes,=Poor=\nAlba a good summer cream,=Good=\nWont buy again,=Poor=\nOlay Total effects 7 in one Moisturizer,=Poor=\nTwo Stars,=Unsatisfactory=\nDo not waste your money!,=Unsatisfactory=\nDoes the job,=Good=\nClogged my pores,=Unsatisfactory=\n\"Feels good, smells awful\",=Good=\nIt's okay,=Good=\nVolume version: Good mascara but not out of this world,=VeryGood=\nGreat on AA natural hair,=Excellent=\nWorth the price,=Good=\nThe best,=Excellent=\nhorrible packaging/didn't work for my skin,=Unsatisfactory=\nGrew on me,=VeryGood=\nNail Brite  : ),=Excellent=\nWonderful Moisturizer...,=Excellent=\nI like it,=VeryGood=\nNot What I Expected,=Good=\nNot what I am looking for,=Poor=\nNot for me,=Good=\nIrritaitng for more sensitive skins,=Good=\nSmooth hair,=VeryGood=\nDistortion in mirror,=Unsatisfactory=\nfor the money this product is pampering,=Excellent=\ngreat for blow drying my hair straight & smooth!,=Excellent=\nSmells great,=VeryGood=\nlight weight,=VeryGood=\neh,=Good=\nLove,=Excellent=\n\"Nice, but deadly\",=Unsatisfactory=\n\"It keeps the shadow on, but.....\",=Good=\nFresh!,=Excellent=\nBrush sheds,=Unsatisfactory=\nlove the scent,=VeryGood=\nWorks Well,=VeryGood=\nIt does not work,=Poor=\nroc night cream,=Unsatisfactory=\nGood Lip Liner,=VeryGood=\nA bit thin for a hair twister this size.,=Good=\nStrong scent...,=Unsatisfactory=\nworks on cystic acne,=VeryGood=\nTIGI Bed Head Head Rush Shine Mist,=VeryGood=\nDoesn't go on good,=Unsatisfactory=\n\"Work great, but expensive\",=VeryGood=\nTerrible stamping results,=Poor=\nI can't figure out how to attach pads,=Poor=\nWorks well,=VeryGood=\nTerrible flyaways and brittleness though makes hair easy to comb,=Good=\nHeavier coverage than I prefer,=Good=\n\"Paul Mitchell Tea Tree Shampoo, 33.8 Ounce\",=Excellent=\nLike the product.....was shipped poorly,=VeryGood=\ngood enough,=VeryGood=\nIt's good if you're careful.,=VeryGood=\nOK,=Unsatisfactory=\nset-it-FRIZZ,=Unsatisfactory=\ndisappointed in frizz control,=Good=\nNot crushed shells..... And,=Poor=\nGood,=VeryGood=\nI don't see the point...,=Unsatisfactory=\nvery good product,=VeryGood=\nMade my sensitive skin itch,=Poor=\nDisappointing,=Unsatisfactory=\nantiagemj,=Poor=\nThis may change my life,=Excellent=\nGreat Leave In For 4 Hair!,=Excellent=\nGreat product,=Excellent=\namazing,=VeryGood=\nhelped me look great!,=Excellent=\nLove this one - moisturizing without weighing hair down,=Excellent=\nNo Relief,=Poor=\nOne Star,=Poor=\nNot great...,=Good=\nGreat coverage at first but does not last,=Unsatisfactory=\nDidn't do much...,=Unsatisfactory=\nLeaves my little dog with a very nice scent,=Excellent=\nGotta love Aveeno,=VeryGood=\nHORRIBLE,=Poor=\nWhat happened to this soap?,=Unsatisfactory=\nThis is no Chi...,=Good=\nuseless stuff!,=Poor=\nWrinkles are not gone!,=Good=\navon wash off mascara,=Good=\nNo Joy,=Poor=\nOnly comb sensitive granddaughter will use - no tangles,=VeryGood=\nNot for my nails.,=Unsatisfactory=\nRight moisture for winter; too much moisture for summer.,=VeryGood=\nWorks Great but Liquidy,=VeryGood=\nNOT for sensitive skin,=Poor=\nHorrible!,=Poor=\n\"produt is OK,but poor delievery\",=VeryGood=\nSmell is gross and really doesn't improve the skin much!,=Poor=\nGreat product; don't hesitate,=Excellent=\nI wanted to love it..,=Unsatisfactory=\nDisappointing for Dark Hair,=Unsatisfactory=\nSo good,=Excellent=\nOrdinary lotion with heating effect,=Good=\nColors somewhat but contains a stench,=Unsatisfactory=\nIt gave me dark brown,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nEh....,=Good=\nDisappointed,=Unsatisfactory=\nDoes not dry lips out,=VeryGood=\nThe best,=Excellent=\nDifferent Uses,=VeryGood=\nNot bad,=Good=\nTurned my strawberry blonde hair level 6 Brown/red,=Poor=\nFour Stars,=VeryGood=\nOK - For the Price!,=Good=\nI've had better,=Good=\nMinimum results if any.,=Poor=\n\"Great for hair, not for scalp\",=Unsatisfactory=\nToo thin/watery for a solid base,=Unsatisfactory=\n***WARNING -DONT BUY!!,=Poor=\n\"Love, love, love!\",=Excellent=\nYES it really does work!!!,=Excellent=\nLasts forever! Second time I order on Amazon.,=Excellent=\n\"Gentle, but not effective\",=Unsatisfactory=\n\"WAITED TO WRITE THIS REVIEW UNTIL AFTER READING MANY REVIEWERS, WEBSITES AND MONTHS OF TRIAL AND ERROR!\",=Unsatisfactory=\nDisappointed,=Good=\ngood product,=Excellent=\nLove this color!,=Excellent=\nGreat Shampoo HORRIBLE Price,=Good=\n\"Cuts grease, smells great.\",=Excellent=\nDecent Brush - Just Not for Blush,=Unsatisfactory=\nLOVE IT! Excellent for African American Relaxed hair,=Excellent=\nWaste of Good Money,=Poor=\nsticky mess.,=Unsatisfactory=\nack! terrible.,=Unsatisfactory=\nTwo stars for the toning ability,=Unsatisfactory=\nNo visible improvement for me,=Unsatisfactory=\ndid not foam very well,=Good=\nWorst Smelling Product I've Ever Used.,=Poor=\nJury is still out....,=Good=\nSticky and Gross.,=Poor=\nNot a fan,=Unsatisfactory=\nReally like it.,=VeryGood=\nToo drying.,=Unsatisfactory=\nBeautiful!,=Excellent=\nIt is lighter than I expected,=Good=\nfake product,=Poor=\nNot for sensitive skin,=Poor=\nMy favorite blush!!!!,=Excellent=\nlove this!,=Excellent=\nDissappointed,=Poor=\nUnimpressed,=Unsatisfactory=\nSmells great but....,=VeryGood=\n5-Year Guarantee Information,=Good=\nToo drying,=Unsatisfactory=\nIt's Okay,=VeryGood=\nAnnoying shape,=Good=\nTerrible side effects,=Poor=\nWhy take a chance?,=Good=\ndoesn't do anything,=Poor=\nMeh,=Good=\nthick!,=Unsatisfactory=\nNot sure yet,=Good=\nNatural? This thing has more chemicals than an episode of Alex Mack,=Poor=\nit is ok,=Unsatisfactory=\nBody wash,=Excellent=\nThe provided magnetic stickers do not work,=Poor=\nMust Have Been Reformulated Sometime,=Good=\nOne of the worst foundations I've ever used!,=Poor=\nNot worth the money at all!,=Unsatisfactory=\n\"Best \\daily\\\"\" smell good\"\"\",=VeryGood=\nNot What I expected,=Good=\nForget the sales pitch,=Poor=\nShipped slower than expected,=VeryGood=\nGreat for those who are lucky enough to have soft water,=Excellent=\nDon't waste your money!,=Poor=\nTough stuff,=Good=\nGood product in a weird niche,=VeryGood=\nIt's ok,=Good=\nSuckered again,=Poor=\n\"Not bad, but . . .\",=Good=\nIt was OK,=Good=\nA yearly cold weather purchase,=Excellent=\nexactly as described,=VeryGood=\n\"Very sheer, elegant medium pink...no pearl in it;\",=VeryGood=\nBest body moisturizer,=Excellent=\nFor people who work with their hands,=Excellent=\nQuestionable Results,=Unsatisfactory=\nNot For Me!,=Poor=\n\"I \\took one for the team\\\"\" so you wouldn't be duped\"\"\",=Poor=\nNot for me,=Unsatisfactory=\n\"Beware, this is not the original formula\",=Poor=\nMy favorite cleanser!,=Excellent=\nTerrible,=Poor=\nSmells just like Anais Anais ...,=Poor=\nthe best hot air curler ever!,=Excellent=\nJust average - no change in my small acne problem!,=Unsatisfactory=\nA Little Goes A Long Way,=VeryGood=\nGreat curlers,=Excellent=\npiece of junk,=Poor=\nDoes What it Says!!,=Excellent=\nOne of the best things for acne,=Excellent=\ncan't live without these,=Excellent=\nGood product but not getting the most from the Ionizer,=VeryGood=\nMoisturize While You Sleep,=VeryGood=\nUnfortunate Rancidity Issues With Lipstick,=Poor=\n\"Best for short or thinner hair.Gave 2 stars for fast heat up beautiful curls, but my curls did not last &  easy to burn yourself\",=Good=\nFavorite soap,=Excellent=\nDidn't do a thing but burn my scalp,=Poor=\nMy one and only eyeliner!,=Excellent=\nFairly good product.,=Good=\n\"Effective natural exfoliant for hyperpigmented, acne-prone, dark brown skin!\",=Excellent=\n\"Maybelline New York Colorsensational Lipstain, Blushing, 0.1 Fluid Ounce\",=Poor=\nnot sure about this yet,=Good=\nVery hard to manuever,=Unsatisfactory=\nTrue NW45 Here- This Color is Great But Not Perfect,=VeryGood=\nNot bad for an inexpensive treatment,=Good=\nNice cleansing product,=VeryGood=\nIt's just glitter,=Poor=\nGreat staying power eyeliner,=VeryGood=\nTangles long hair,=Poor=\nNOPE!,=Poor=\nNo difference when used,=Unsatisfactory=\nROC review,=Good=\nHard to Really Know Shade,=Good=\nOk I guess,=Good=\nSeems like a nice straightener but it ripped my hair out,=Unsatisfactory=\n\"The Advertising Standards Authority (ASA) Banned An Ad For This Product In 2011 for \\misleading,\\\"\" customers.\"\"\",=Poor=\nMy favorite mascara!,=VeryGood=\nwarning!,=Good=\nRub Away Bar Is a Dud,=Poor=\nToo strong!,=Good=\nbeautiful black on my eyelids makes a nice liner,=VeryGood=\nLosing hair with every eyelid stroke...,=Good=\nsudsy,=Excellent=\nDefinite Shine Control,=Excellent=\nGood!,=Excellent=\nLove this soap! . . . BUT WHAT'S WITH THE NEW PRICE?,=VeryGood=\nMeh,=Poor=\nHmmm... ?,=VeryGood=\nok,=Good=\n\"Minimal Pigment, Crumbly Loose Texture\",=Unsatisfactory=\nfoul smell,=Unsatisfactory=\nIt's ok,=Good=\ntoo soft do to much good,=Unsatisfactory=\n\"No significant difference, but it didn't make redness worse\",=Good=\nIt smells,=Excellent=\n\"It's OK, but too pricey for me\",=Unsatisfactory=\nnot bad for over the counter,=VeryGood=\n\"Good, I suppose\",=VeryGood=\nDecent,=Good=\nGood size for longer hair,=VeryGood=\nGreat travel design but heating takes too long and metal pins are awful...,=Unsatisfactory=\ngreat,=Excellent=\nStrongest I Have Found...,=Excellent=\na bit thicker than I expected....and did not agree with my skin.,=Good=\nNot what I expected,=Poor=\nMy favorite scent on my husband,=Excellent=\n\"Itchy, uncomfortable\",=Poor=\nWitch Hazel Pore perfecting Toner,=VeryGood=\nNot for me,=Unsatisfactory=\nIt's okay,=Good=\n\"Too Soon To Tell, But Promising\",=Good=\nToo expensive for lackluster results,=Unsatisfactory=\nNot worth the money or the time,=Poor=\nThis works,=Excellent=\n\"Love, love, love this fragrance!\",=Excellent=\nThis Stuff is Surprisingly Good!,=VeryGood=\nnot enough coverage,=Unsatisfactory=\nNot for me..,=Poor=\nWashed off pretty quickly,=Good=\nAwful,=Poor=\nGreat on sensitive/dry skin!,=Excellent=\nOuch... of the minority here,=Poor=\nI Like It!,=VeryGood=\nGreat comb,=Excellent=\nNot bad,=Good=\nBest Lemon Scent EVER!  Will make you pucker!,=Excellent=\nNo way,=Poor=\nGreat Shampoo,=Poor=\nAugh.,=Unsatisfactory=\nForget  about it and get a cheapy powder from the drug store,=Poor=\nreally wanted to like this,=Good=\nWorked even in humidity,=Excellent=\nDamaged Skin,=Unsatisfactory=\nGood product!,=VeryGood=\nNOT for Caucasian / fine hair,=Good=\nBurned my Face,=Good=\nVitamin C,=Unsatisfactory=\nNot a high quality gloss.,=Poor=\ndid not like the liquid,=Unsatisfactory=\nAwful -Wish I could give it 0 stars,=Poor=\nDon't Bother,=Poor=\nObaji products are the best!!,=Excellent=\nDried my skin out,=Poor=\nMask or Cleanser,=Excellent=\nDried Out My Skin,=Unsatisfactory=\nDon't bother,=Unsatisfactory=\nNice for my natural fro,=Good=\ngreat for healing tattoos and cracked dry hands as well,=Excellent=\n\"Nutmeg and Clover, Over and Over\",=Good=\nStings my skin!,=Poor=\nNice stuff!,=Excellent=\nNot So Soft,=Good=\nOk to exfoliate just overpriced,=Unsatisfactory=\nPoor product!,=Poor=\nWorked great at first but in due time caused skin issues!,=Good=\nGood tanning lotion.,=VeryGood=\nthe perfect sheer pale pink,=Excellent=\nExcellent strengthener but chips very easily.,=Good=\nFabulous!!,=VeryGood=\nThick moisturing conditioner for coarse/damaged hair,=Unsatisfactory=\nWill treat mild acne problems,=Good=\nBlah,=Unsatisfactory=\nNot the color shown,=VeryGood=\ndidnt work,=Unsatisfactory=\nExpired much?,=Poor=\nBad quality,=Poor=\nDidn't Work for Me,=Poor=\nEnjoyed it once but not buying it now,=Good=\naudrey,=Good=\n\"Unfortunately, this smells horrible\",=Poor=\nPull and Pinch  Hair,=Unsatisfactory=\n\"Totally Gross, But In A Good Way\",=Excellent=\nOLD!,=Poor=\n\"a great, cleansing shampoo...\",=VeryGood=\n\"Good product, but not as good as more popular brand names\",=VeryGood=\nAhhhhhh!,=Unsatisfactory=\n\"A happy, not expected reaction... ;)\",=Excellent=\n\"Dry, matted hair\",=Poor=\nNot so much...,=Unsatisfactory=\nvery sticky,=Good=\nWay too much perfume,=Poor=\nGood but I still love Chanel,=Good=\nGood for the money,=Good=\nLove this stuff,=Excellent=\nGood and bad,=Good=\nHempz,=Unsatisfactory=\nGood Shampoo,=Excellent=\nHOLY TINY TEST TUBE,=Unsatisfactory=\nGreat until it broke,=Good=\nJust okay,=Good=\nOkay,=Good=\nLove it.,=Excellent=\nAmazing but a little flaky,=Excellent=\nThis sucks,=Poor=\nGreat product for 4a/b hair,=VeryGood=\nGreat for very dry skin,=VeryGood=\n\"Decent at the right price, but not full price.\",=Good=\nAlpha Hydrox,=Excellent=\nDrying,=Unsatisfactory=\nglossy and solid,=VeryGood=\nNOTA DEAL!,=Unsatisfactory=\ngreat color,=VeryGood=\nOverpowering Scent,=Good=\nthumbs down,=Poor=\nWonderful product!,=Excellent=\nWorst Curling Iron I've Ever Used,=Poor=\nworks,=VeryGood=\nIt irritates my skin,=Unsatisfactory=\nNo thanks,=Poor=\nNot worth it,=Poor=\nTwo Stars,=Unsatisfactory=\ngreat conditioner,=VeryGood=\nDid nothing for me,=Poor=\nDisappointing!,=Poor=\nZERO STARS IF POSSIBLE,=Poor=\nOkay sunscreen.. makes my face lighter and white,=Good=\nIt is not for everyone,=Good=\nBetter for your body,=Excellent=\nGood Product,=VeryGood=\nBabyface?,=Unsatisfactory=\nSmooth but allergic,=Poor=\nseemed old and expired,=Unsatisfactory=\nFor Home Use?,=Unsatisfactory=\nReduces puffy eyes,=VeryGood=\nOkay body wash...,=Good=\nMineral Oil!?,=Excellent=\nReally Good Drugstore Pick,=VeryGood=\nVery good for facials,=VeryGood=\nHATE it,=Poor=\nNot what I expected...,=Unsatisfactory=\nFragrance free.  No nonsense.,=Excellent=\nI love this lotion,=Excellent=\nDream Cream,=VeryGood=\nPretty Good,=VeryGood=\nBroken Seal,=Unsatisfactory=\n\"I Got a Shade of Red, Not Black\",=VeryGood=\nstiff as a bristle brush,=Poor=\nbrush,=Good=\nNot for me,=Unsatisfactory=\nWas not impressed with this product~!,=Unsatisfactory=\nBest styling product EVER,=Excellent=\n\"Simple, effective, wrinkle reduction\",=VeryGood=\nRemoved my blackheads!,=VeryGood=\nUseful purchase,=VeryGood=\ngood product,=Excellent=\nA great night cream that's also very economical,=Excellent=\n\"I wouldn't call this \\light brown\\\"\"\"\"\",=Unsatisfactory=\n\"Not good for overly sensitive, does not fight stubborn acne\",=Unsatisfactory=\nGreat Buy,=Excellent=\ngreat price,=VeryGood=\nWow..,=Poor=\nToo sweet and cloying!,=Unsatisfactory=\nSmell is Eh,=Good=\nGreat Stuff!,=Excellent=\nGood lotion overall,=VeryGood=\nstrong unpleasant scent,=Unsatisfactory=\nGood product,=Good=\nBest there is!,=Excellent=\nEyeliner JOKE,=Poor=\nPainful,=Poor=\nSUCCESS IT IS !,=Excellent=\nCrappy Product,=Poor=\nNice but,=Good=\nThank you many times again,=Poor=\n\"mehh, majority of the brushes suck\",=Unsatisfactory=\nThis is a fine powder. Light and easy to apply,=VeryGood=\nDid nothing,=Unsatisfactory=\n\"Nice, But Not Exciting\",=Good=\nLove it,=Excellent=\nDefinitely not impressed,=Poor=\nSparkling Bling for your nails,=Poor=\nI Like It,=Good=\n\"Soft, Clean and Delicate Feeling\",=Excellent=\nBest stuff!,=Excellent=\n\"Long lashes, takes too long to wash off :(\",=Unsatisfactory=\nOne of the best OTC acne treatments,=VeryGood=\nGreat highlighter for under eyes and other 'highlighting' areas,=VeryGood=\nSmells great and gets the job done,=VeryGood=\nGreat results at modest price,=Excellent=\nGreat hair dryer,=Excellent=\ngood,=VeryGood=\nAlright But Wish It Had A Fan,=Good=\nWonderful,=Excellent=\nPremier Dead Sea Eye Serum,=Poor=\ngarbage,=Poor=\nNot at all what I expected,=Poor=\nBurts Bees; A Natural Facial Cleanser,=Good=\nok,=Good=\nnot bad,=VeryGood=\nDon't buy it..,=Poor=\nAmazing! So moisturizing!,=Excellent=\nColor isn't true,=Good=\nNot good,=Poor=\nDoes nothing for my hair,=Unsatisfactory=\nNot As Annoying As You'd Think,=VeryGood=\nFunky film on my hair from this,=Unsatisfactory=\nWell worth the price,=VeryGood=\ndid not last,=Unsatisfactory=\nto grease didnt care for this and after being at ...,=Poor=\nGreat,=Excellent=\nwas my favorite,=Good=\nGreat iron,=Excellent=\neh..,=Good=\nJohn Frieda Frizz Ease Curl Perfecting Spray did not do anything for my curls,=Unsatisfactory=\nNew favorite color,=Good=\nNot for my hair,=Poor=\nSucker born every single day,=Poor=\npoor excuse,=Poor=\nProbably my #1 favorite mineral foundation,=VeryGood=\nMoisturizing Bath Beads,=Excellent=\nNot for african americans,=Unsatisfactory=\nawesome,=Excellent=\nFour Stars,=VeryGood=\nWould not buy again,=Good=\nlove it,=Excellent=\nWorst gift I've ever recieved!,=Poor=\nFeels Good To Smell Like A Boss,=VeryGood=\nsome reduction,=VeryGood=\nWhat did it do?,=Poor=\nTwo Stars,=Unsatisfactory=\nIt's.. OKAY..,=Unsatisfactory=\nNot opaque,=Unsatisfactory=\nYou get what you pay for,=Poor=\nStill using,=Good=\nI love this product but.....,=VeryGood=\nSO/SO,=Good=\n\"A great volumizer, even for those with no hair skills!\",=Excellent=\nDoes the job,=VeryGood=\nGreat Color,=VeryGood=\nUse For Minor Stretch Marks,=Good=\nTerrible For Hair,=Good=\nIt'll do in a crunch,=Good=\nHit or miss,=Good=\nNice and natural,=VeryGood=\nDidn't work for me,=Poor=\nOnly shampoo my husband will use lately,=Excellent=\nOrmedic-an allergic nightmare,=Poor=\nNOT for straight thin hair!!!!!!!!!!!!!!!!!!!,=Poor=\n\"Not as expected, but....\",=Good=\n\"Instantly Smoother Skin, 8 Weeks to Firmer Skin\",=VeryGood=\n\"A face treatment that does what it says, but...\",=Good=\nFRESHHHHHHHHHHH,=Excellent=\nVery Clean Result,=VeryGood=\nGelish cleanser,=Poor=\nLike everyone else said but I didn't listen,=Poor=\nFan,=Excellent=\n\"Works well, but it REALLY stinks.\",=Good=\nGreat stuff!,=Excellent=\nGood for Very Short Hair,=Unsatisfactory=\nThe brush is nice,=Excellent=\ncant wate,=Good=\nGood but not great.,=Good=\n\"Aveeno Daily Moisturizing Lotion, 8 Ounce\",=VeryGood=\n\"Helps Hair Grow Faster, but not thicker.\",=VeryGood=\nNo,=Poor=\nGood cuticle pusher,=VeryGood=\nok gel,=Good=\nnot what I expected,=Poor=\nThe Best for Dry Hands,=Excellent=\nAcne Causing? - Edited,=VeryGood=\nBad quality,=Poor=\nAffordable perfume that smells expensive,=VeryGood=\nNice color,=Good=\nDID NOT WORK,=Poor=\nWas great - when it worked,=Poor=\nDid not work for me...,=Poor=\nI'm loving it!,=Excellent=\nIts a Good Product.,=Good=\nAlmost worked...,=VeryGood=\ndoesnt eliminate the spots in the skin...,=Unsatisfactory=\nDarker after Reformulation,=Good=\ngoood good,=Excellent=\nUse Sunscreen Where Hot,=Good=\nVery nice base coat with the added benefit of a strengthener.,=Good=\nvery nice.,=Excellent=\nGood stuff,=VeryGood=\nWHO KNEW LAVENDER SMELLED LIKE MUSK AND CHEMICALS,=Unsatisfactory=\ngood,=VeryGood=\nAlpha Hydrox works but too oily,=Good=\nValue,=Good=\nneeds to be reapplied,=Good=\ndisappointing styling tool,=Unsatisfactory=\nI don't know if it works ...,=Good=\nUghhhh!!!! Hate I bought this!,=Poor=\n\"Warm, vanilla, not so much coconut\",=VeryGood=\n\"Funky smell, hard to wash out of hair\",=Unsatisfactory=\nHORRIBLE QUALITY,=Poor=\ndid not work for me.,=Poor=\nFlimsy,=Poor=\nGreat Beginning Nail Kit,=VeryGood=\nGOOD FOR YOUR HAIR!,=VeryGood=\nHard to use,=Unsatisfactory=\n\"For High Altitudes,  this was my dermatologist's recommendation.\",=VeryGood=\nJust ok for me,=Good=\n\"Nice, Light Weight Primer\",=VeryGood=\nMaybelline,=Poor=\nWill not repurchase,=Poor=\nNot super impressed.,=Good=\nHolds well,=VeryGood=\nDoes not work,=Poor=\nNot for me,=Unsatisfactory=\nEasy to use Round Brush,=VeryGood=\nUse this in your skincare regimine regularily for best results!,=VeryGood=\nbad,=Poor=\nChristian Dior Waterproof Mascara,=Excellent=\nGood price value,=Good=\nGreat application,=VeryGood=\n\"Great everyday moisturizer, who would've thought?\",=Excellent=\nYou get what you pay for with knock offs,=Good=\nHorrid Product,=Poor=\nyes to blueberries,=Poor=\nnot tht good,=Good=\n\"great bag, but..\",=Good=\nGood enough.,=Good=\nmurad resurgence age diffusing serum,=Poor=\nBEST STUFF EVER!,=Excellent=\nI do not like this product!,=Poor=\nGood vibrations,=Good=\ngreat night creme,=VeryGood=\nWorks Quickly and Well Like Magic!,=Excellent=\nThey leak!,=Unsatisfactory=\n\"Not a man's product,  but...\",=Good=\nOuch,=Good=\nworks wonders!,=Excellent=\nGood,=VeryGood=\nto short!,=Poor=\nYUCK!,=Poor=\ngreat but better,=Good=\nGood ingrediants with bad ingrediants cancels out the benefit,=Poor=\nNot impressed,=Unsatisfactory=\nNice Item,=Excellent=\nFantastic results!,=Excellent=\nGREAT PRODUCT!,=Excellent=\nDisappointed,=Unsatisfactory=\nMy skin feels great after applying the serum,=Excellent=\nToo oily!,=Good=\n\"I like this color better than dark or jet blac, for my brown eyes/fair skin\",=VeryGood=\nDidn't work for my 4c hair...,=Poor=\nBeautiful Feeling,=VeryGood=\nGood for the price,=VeryGood=\nDisappointed...I do not recommend this,=Unsatisfactory=\nAWESOME,=Excellent=\nwasn't what I was expecting,=Good=\nVery good,=Excellent=\n\"Overpriced, over rated & sub-par quality. There are MUCH better products out there for a fraction of the cost\",=Poor=\nBest Ever!,=Excellent=\nHave problematic skin?,=Excellent=\nSlowly.....Very....very....very....slowly going away,=Unsatisfactory=\nGood at first,=Unsatisfactory=\nso moisturizing!,=VeryGood=\nFavorite perfume,=Excellent=\nIt smells weird,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nno good,=Poor=\nPerfect size and thickness for Paraffin dip,=Excellent=\nNot for humid climates,=Good=\nNot Good- Raccoon Eyes,=Unsatisfactory=\nOUCH. Back to Crisco and PB for me...,=Unsatisfactory=\nBiolage by Matrix Ultra-Hydrating Conditioning Balm 16.9 Ounces,=Excellent=\nOverall improvement in skin eveness,=VeryGood=\nGreat Moisterizer,=VeryGood=\nBought it for the shipping,=Unsatisfactory=\nPurchased 3 different Colors....One worked a little too well,=VeryGood=\nWay Too Harsh- Causes Rash,=Poor=\nwow... that's a heck of a hairdryer,=Good=\nIt's just right,=VeryGood=\nthrew it out a long time ago,=Poor=\nOnly one smells good.,=Unsatisfactory=\nNot for me,=Poor=\n\"Not a foundation, a blemish treatment\",=Unsatisfactory=\nBronzey Glow,=VeryGood=\nMade me break out,=Unsatisfactory=\nDo not buy this product!,=Poor=\nOnly Lotion That Worked For Eczema! Love this.,=Excellent=\nRun Of The Mill,=Good=\nHelps,=Good=\nCleans without drying out,=VeryGood=\nQuestionable seller (SkinDirect ) & poor product,=Poor=\n\"Disappointing, because I really wanted it to work!\",=Unsatisfactory=\nLooooooooove this product!!!!!,=Excellent=\nWorked for a while,=Good=\nHappy....but now have questions,=Good=\nHair Dryer for everybody,=VeryGood=\nWorks better than the cheap ones,=VeryGood=\nPotentially dangerous...,=Unsatisfactory=\nDisappointing,=Poor=\nPerfect product for the switch from conventional to healthy,=VeryGood=\n\"NOT for super fine, thin, naturally wavy, or shorter than shoulder length hair\",=Poor=\nPretty cool :),=VeryGood=\n\"GREAT for problem skin, but smells like peanuts\",=Excellent=\nIt works,=Good=\nNot what I hoped for,=Unsatisfactory=\nNo results,=Poor=\nThe BEST!,=Excellent=\n\"Works good, Smells nice\",=VeryGood=\nCan't Live Without It!,=Excellent=\nNice Mosturizer,=VeryGood=\n\"If you need lips that make a statement, this shade of red does it!\",=VeryGood=\nSmell so potent,=Unsatisfactory=\nLove the product and the color (nonstop cherry),=Excellent=\nDoctor prescribed tips for eczema - not the new Dove,=Unsatisfactory=\nI would have given it 0 star....,=Poor=\nhave my wig on this while,=Good=\nI adored it but one that I bought from here just awful,=Poor=\nbest moisturizer on the market!,=Excellent=\nnot feeling it,=Poor=\neh....not impressed.,=Unsatisfactory=\nYes and no,=Good=\nTry Maybelline NY Line Stylist better,=Poor=\nGreat cream,=Excellent=\nGreat for flat ironing,=Excellent=\nIt's good,=Good=\nworks good,=Excellent=\nNo Not Working,=Poor=\n\"It's okay, I can do better\",=Good=\nFrizz Fighter,=VeryGood=\nMmmmmm nice,=Excellent=\nGreat face wash,=Excellent=\nGreat facial cleanser,=Excellent=\nOrdered 11/11 delivered on 12/27 Buyer Beware!!!!!!!!!!,=Poor=\nToo much fragrance for my taste,=Unsatisfactory=\nNot quite like what I'm used to.,=Good=\nColor is different than my usual choices,=VeryGood=\nOne suitcase means smaller rollers!,=VeryGood=\nIncreased infant excema,=Unsatisfactory=\nGreat opacity,=Excellent=\n\"It works, but not well enough.\",=Poor=\nDidn't notice a difference :(,=Unsatisfactory=\nNot works well with lipstick,=Good=\nNot for my hair type,=Good=\nToo scented for me,=Unsatisfactory=\nIt works,=Excellent=\n\"It is such a strong herbal scent that it made my entire apartment smell like henna, and gave me a terrible headache\",=Poor=\n\"I like the moisturizing properties, but the smell is a little overwhelming to me\",=Good=\nGilding the Lily...Don't Bother,=Poor=\nDrier and tighter skin... not the result I was hoping for,=Unsatisfactory=\nwrong product,=Poor=\nGreat daily/night cream,=VeryGood=\n\"fun night routine, but no noticeable difference\",=Good=\n\"Average serum, stinky scent!\",=Unsatisfactory=\nWonderful for sensitive dry skin,=Excellent=\nLightweight and absorbs well,=VeryGood=\nIT WAS wonderful,=Poor=\nTried to Like It,=Unsatisfactory=\nThis face wash rocks!,=Excellent=\nlove this stuff...!,=Excellent=\ndon't fall for it,=Poor=\nDon't know what others are seeing!,=Poor=\nLove this,=Excellent=\nStaple Scent for Active Males...imho,=Excellent=\nFragancia Glow de JLO,=Excellent=\nOk,=Good=\nJust Okay.,=Good=\nWorks but use sparingly and with combo of other cleansers,=Excellent=\nNot sure,=Good=\nterrible quality,=Poor=\nAmazing,=Excellent=\nbad brush,=Unsatisfactory=\nYou better like coconut!!,=Good=\nMeh,=Good=\nI use it almost daily.,=Excellent=\nReally thin -- should be packaged in a pump bottle,=Good=\nBiolage is always wonderful,=Excellent=\nWorks very well,=VeryGood=\nGreat for Toddler,=VeryGood=\nVery Different,=Poor=\nMiniature clips,=Good=\nAbsolutely!,=Excellent=\nThe new standard night treatment!,=Excellent=\ni usually buy in Target....,=Good=\n\"too clumpy and dry,\",=Unsatisfactory=\nBeware! Contains parabens,=Poor=\nNot for me,=Unsatisfactory=\nLove it love it love it,=Excellent=\n\"Mascara, Eyeliner Don't Match Description\",=Unsatisfactory=\n\"Average, nothing special\",=Good=\nNice and thick but doesn't actually remove stretch marks,=Good=\nGood product,=VeryGood=\nBiolage by Matrix Hydratherapie Hydrating Shampoo 33.8 Ounces,=Excellent=\nHot Air Curling Combo,=Good=\nPrice was high,=Good=\nno!!1,=Poor=\n\"I know it's oil, but there is such a thing as too oily.\",=Poor=\nHands Free,=Excellent=\nGreat color!,=Excellent=\n\"defective, and misleading, no hello kitty\",=Poor=\n\"So far, so good\",=VeryGood=\nproduct is great but packaging poor,=Good=\nNot a heavy cream,=Good=\nIt's fine for the price,=Good=\nGreat curling iron!,=Excellent=\nnice,=Good=\ncaused an allergic reaction,=Poor=\nCetaphil UVA/UVB Defense SPF 50 Facial Moisturizer - Too Expensive & Too Greasy,=Good=\n\"Nice texture, light scent\",=VeryGood=\nHappy with these ... broken ones exchanged & replaced,=VeryGood=\nSilky Smooth,=Excellent=\nKeeps my skin looking young!,=Excellent=\nNot Ment for thin hair,=Poor=\nSWEET,=Excellent=\nDoes a decent job,=VeryGood=\nok....,=Unsatisfactory=\nNot a fan at all :(,=Unsatisfactory=\nlove the honey mango scent,=Excellent=\nEstee Lauder has screwed around with Youth Dew,=Good=\nexcellent,=Excellent=\nRip-off,=Poor=\nSoft Hair :o),=VeryGood=\nLooks too pale on me.,=Poor=\nIt smells like tiger balm and even feel like a bum,=Unsatisfactory=\nloreal cream cleanser,=Poor=\nWork well for hair bows,=VeryGood=\nA good moisturizer,=VeryGood=\nLove this stuff.,=VeryGood=\nSomewhat disappointed,=Unsatisfactory=\nVery disappoited,=Poor=\nSmell?,=Unsatisfactory=\nGood!,=VeryGood=\nGood Body Brush,=VeryGood=\nMeh,=Unsatisfactory=\nThank God and thank aussie :),=VeryGood=\nI like it,=VeryGood=\nOMG this is messy,=Unsatisfactory=\nNot for me...,=Unsatisfactory=\nToo drying,=Unsatisfactory=\n\"Ehmm, I've seen better..\",=Unsatisfactory=\n\"Works, but can make hair greasy\",=VeryGood=\nA Cleanser without the artificial coloring,=VeryGood=\nMessed up service,=Poor=\n\"Terrible, has not cured gel nails at all\",=Poor=\n\"***So Far, So GOOD***Powerful Weapon in the Fight Against ACNE!\",=VeryGood=\nNot that effective. Not good for sensitive skin.,=Good=\nBetter as a leave in,=Unsatisfactory=\n\"Clogs pores, but is gentle\",=Good=\nNot Quite Intensive Care,=Good=\njust clear lash,=Good=\n\"Good, but there are better scents.\",=VeryGood=\nPCA pHaze 13 Pigment Gel,=Unsatisfactory=\nYou get what you pay for,=Unsatisfactory=\nNo Difference & Breakouts,=Unsatisfactory=\nRevita-lift by L'Oreal Paris.,=Good=\nChanged the product & not for the better,=Poor=\n\"easy application, light smell\",=VeryGood=\nAwesome!,=VeryGood=\nA great product for thirsty skin!,=Excellent=\nIt's a Serum,=Good=\nSmells great...but to expensive,=Good=\nI don't like it.,=Unsatisfactory=\nDoesn't do the job.,=Poor=\nGood product,=Excellent=\nFirst Time Using Product,=Excellent=\nMeh. Not that impressed,=Unsatisfactory=\nit has alcohol in it,=Unsatisfactory=\nDefective?,=Poor=\n\"Won't make you break out, but is greasy\",=Good=\nPretty Cool,=Good=\nGreat,=Excellent=\n\"Best blush ever, hands down!\",=VeryGood=\n\"Too strong and too \\old lady\\\"\"\"\"\",=Good=\n\"Too dark, does not stay\",=Poor=\nPain to apply,=Unsatisfactory=\nGood,=VeryGood=\nNice!,=Excellent=\nGood for thin African-American hair,=VeryGood=\nDid not like the color,=Unsatisfactory=\nBetter than the others,=Excellent=\nDoes what it is supposed to do!,=Excellent=\nSmells HORRIBLE!!!,=Poor=\nOh that Smell,=VeryGood=\nNot good,=Poor=\n\"sticky, yucky feeling.. Tresseme has a better spray gel.. update...\",=VeryGood=\nNot Matte,=Poor=\nJust OK,=Good=\nMy hair is yellow,=Unsatisfactory=\nGood Hair Dryer,=Good=\nAphogee Two Step Treatment,=Good=\nI'm not sold,=Good=\nWrong Combination,=Good=\nPerfect under loose powder,=VeryGood=\nNOTHING TO WRITE  HOME  ABOUT,=Unsatisfactory=\nI don't like this product at all,=Poor=\nsmells like old lady perfume.,=Unsatisfactory=\n\"Suave Naturals Conditioner, Tropical Coconut - 22.5oz. Suave got it right!\",=Excellent=\nFades Fast,=Good=\nRoller Face Up,=Good=\n-,=Good=\nDisappointed,=Poor=\nlove it,=Excellent=\n\"Nice colors, okay quality.\",=Good=\nGreat moisturizer,=VeryGood=\n\"Great for thin, blonde hair\",=Excellent=\numm,=Unsatisfactory=\nMinimal Results,=Unsatisfactory=\nDisappointed,=Poor=\nHard to use,=Unsatisfactory=\nsad birthday girl:(,=Poor=\nAnother Excellent Product By Paul Mitchell,=Excellent=\nDeceptive,=Poor=\nstings,=Good=\nt's very good. really love it,=Excellent=\n:-( It burned me,=Poor=\nThese are the best,=Excellent=\nSmells like grandma and makes my skin oily!,=Poor=\nreally cute but...,=Good=\nSmells OK but super greasy,=Unsatisfactory=\n\"Noy A Necessity, But It Helps When You Are Short Of Time!\",=VeryGood=\nLove this blowdryer!,=Excellent=\nThe colors turn out nice but its not the best,=Good=\ngreat for cleaning edges,=VeryGood=\ncrap,=Poor=\nNothing special,=Good=\nIt's a scalp brush,=Good=\nNot Bad...,=Good=\n\"It's okay, but definately not magical for me.\",=Good=\ndoesn't work,=Unsatisfactory=\nWaste of money,=Poor=\nVery Nice,=VeryGood=\nI must be allergic,=Poor=\nMantastic,=Good=\nIt's just cheap clear nailpolish! (:(,=Poor=\nIt's just Okay...,=Good=\n\"great, but could be better\",=Good=\nSo Far So Good (Dry Brittle Nails),=VeryGood=\nNot for me,=Poor=\nShea Butter Delight,=VeryGood=\nWorks well but don't expect miracles,=Excellent=\ndid not work for 2c/3b hair,=Unsatisfactory=\n\"China Glaze White on White\\...\"\"\",=VeryGood=\nPretty Blue!,=VeryGood=\nNot fast drying,=Good=\nWatch out for hair loss!,=Unsatisfactory=\nNot thrilled.,=Unsatisfactory=\nNot for me,=Poor=\nSave your money!,=Unsatisfactory=\nPoor Lighting,=Unsatisfactory=\nthought this was supposed to be boar bristle,=Unsatisfactory=\n\"First Impression = Great! But over time, not pleased\",=Unsatisfactory=\nOne Star,=Poor=\nunsatisfactory,=Poor=\nMoisturizes well but scent is VERY strong (too strong),=Poor=\n\"green rubber scented, non-lathering stone\",=Good=\nWonderful Product!,=Excellent=\nlike this but wish they would tell you what percent glycolic acid it has?,=VeryGood=\nWorst gel I've tried.  Ever.,=Poor=\n\"reinvigorating, cooling, smells like Vapo-Rub\",=Good=\nA great leave in conditioner,=VeryGood=\nEyelash product,=Unsatisfactory=\nSwitch to Elta MD UV Clear SPF 46 if you have combination or acne prone skin!,=Unsatisfactory=\nIt's ok,=Good=\nin love with it,=Excellent=\nAbsolutely Perfect,=Excellent=\nAwful haircolor - #4 Dark Brown,=Poor=\nMACalicious,=Excellent=\num...just a good-smelling soap to me...,=Good=\nGreat color!,=Excellent=\nMakes a great mask!,=VeryGood=\nNature's Cure Body Acne Treatmen,=Poor=\n\"Redheads:  just use \\warmth\\\"\"\"\"\",=Poor=\nno real improvement,=Good=\nToo dark,=Poor=\n\"\\Shrinks\\\"\" polish, awful for french tips\"\"\",=Unsatisfactory=\nGreat Addition To My Weekly Beauty Routine,=Excellent=\n\"When used correctly, it's exactly what you hoped it would be!\",=Excellent=\n\"Makes hair \\fuller\\\"\", though not necessarily \\\"\"thicker\\\"\"\"\"\",=Good=\nMehhh......,=Unsatisfactory=\n\"chipi, chipi\",=Good=\nLove the color,=Excellent=\nAnother not so good eye cream,=Good=\nPlenty in the bag.,=VeryGood=\n:(  Didn't work...,=Poor=\n\"100% pure facial peel, pineapple enzyme facial peel 2.0 oz\",=Good=\nMeh...,=Unsatisfactory=\nGREAT PRODUCT-SPILLAGE PROBLEM,=Good=\n\"Palmer's Cocoa Butter with VItamin E, please change your bottle!\",=Excellent=\n\"Effective for small touch ups, but sticky and heavy.\",=Good=\n\"Easy for lips, for cheeks-work quickly...\",=VeryGood=\nNice!,=VeryGood=\nonly eyebrow dye I use,=Excellent=\n\"Not sure it's \\authentic. \\\"\" Seems to irritate skin ...\"\"\",=VeryGood=\nWonderful Color! Excellent Wear!,=Excellent=\nIT WORKS,=VeryGood=\nStrong Vapors,=Good=\n\"Easy to use, great value\",=Excellent=\nThis stuff is very good but there's something that's possibly even better...,=VeryGood=\nGet ready to shave,=Good=\nBring the Islands To Your Home,=Excellent=\ndidn't work for me!,=Poor=\nAwful Scent and Break Outs,=Poor=\nClear complexion...,=Excellent=\nBig bang for your bucks,=Excellent=\n\"Works well in the shower, #steam\",=VeryGood=\nsucks.....,=Poor=\nDidn't do much at all,=Unsatisfactory=\nSofter Hair Instantly!,=VeryGood=\nDoesn't contain broad-spectrum SPF,=Good=\nOf the 3 Total Moisture scents this one is my least favorite,=Good=\nAbsolutely the best!!!!!!!,=Poor=\n\"I love the company's standards, but this bottle is difficult.\",=Good=\nNot working for me,=Good=\nSo so...,=Unsatisfactory=\nI expected more from a Pantene product,=Unsatisfactory=\n\"Sickly tint, not sweat-proof\",=Poor=\nAhhhn,=Good=\nAwesome product! Almost perfect,=VeryGood=\nI had few expectations...,=VeryGood=\nOk,=Good=\n\"Nice idea, but fundamentally flawed\",=Unsatisfactory=\nI love it :),=Excellent=\nI have combination dry skin.,=Poor=\na MUST for curlies!,=Excellent=\nBest facial cream,=Excellent=\nHas that greasy feel but it doesn't look greasy,=Good=\nDoes nothing for me.,=Poor=\nWant to smell like a fruit smoothie? This is your lotion.,=Unsatisfactory=\nNot Foamy,=Good=\nok...,=VeryGood=\nNot that good,=Unsatisfactory=\nWay too dark,=Poor=\nWOAH! Condition OVERLOAD,=Poor=\nLove this soap!,=Excellent=\nVery versatile product,=Excellent=\nCaution....,=Unsatisfactory=\n\"good lotion, but smells too strong!\",=Good=\nGood oil,=VeryGood=\nawful,=Poor=\nTIGI Catwalk Curlesque did not do anything for my wavy curls,=Unsatisfactory=\nUgh,=Poor=\nsmudge proof? I dont think so,=Unsatisfactory=\n\"Maybe not for me, maybe for severe acne.\",=Good=\nWonderful Smell. Not Enough Conditioning.,=Good=\nIlx,=Unsatisfactory=\nPretty good peel,=VeryGood=\nNice cream but not sure if it takes care of wrinkles,=VeryGood=\nGood for damage hair,=Excellent=\nHave been using it for about 3 weeks now....,=VeryGood=\nGreat Product,=Excellent=\n\"Works well, but not very moisturizing.\",=Good=\nnot sure,=Good=\nPassionate about all the Roc products.,=Excellent=\nGood but not the bottle,=VeryGood=\nVery Pleased!,=Excellent=\nToo strong for my taste,=Good=\nThick,=Poor=\nHighly Recommend,=Excellent=\n\"If You've Had Surgery, Are Doing Chemo, Are Elderly--Use This Shampoo\",=Excellent=\nGood stuff,=Excellent=\nNot a great quality bath towel.,=Good=\nI love this stuff,=Excellent=\nMine separated too.,=Unsatisfactory=\nPolish collector must have.,=Excellent=\ndid not work for me,=Unsatisfactory=\nI don't know,=Poor=\nawesome,=Excellent=\nLacks a built-in dropper...,=VeryGood=\nNOT GOOD,=Poor=\nIt gets the job done.,=Good=\nSmooth,=VeryGood=\n\"Nice color, but chips easily\",=Unsatisfactory=\nRemington Shine and Frizz Control Flat Iron,=Good=\nDecent Tanning Lotion,=VeryGood=\nDo not waste your money,=Poor=\n\"Misleading, full of chemicals and parabens.\",=Poor=\n\"Never, ever buy it again.\",=Poor=\nGreat Cleanser!,=VeryGood=\nNo-ture No-ture,=Unsatisfactory=\nGreat Product,=Excellent=\nCouldn't find my old cleanser,=Excellent=\nEffective,=VeryGood=\nJust ok.,=Unsatisfactory=\n\"Good Stuff - Moisturizes, Opens eyes\",=VeryGood=\nLove These,=Excellent=\nOn the fence,=Good=\nSuccess depends on your hair routine,=VeryGood=\nScratch and stings,=Good=\nA cautionary tale,=Poor=\nNot as good as Living Proof.,=Good=\nAmazing Hands!,=VeryGood=\nIt doesn't last!,=Unsatisfactory=\n\"Oily, irritating mess\",=Poor=\nFive Stars for Those in Need of Skin Repair. Two Stars for Those Already Invested in Their Skin.,=Good=\nI recommend this product.,=Excellent=\n\"can recommend afterall - Eating Crow, Tastes Good\",=Good=\n\"Honestly, Amazing yet not\",=VeryGood=\nDermalogica Daily Microfoliant.... LOVE IT!,=Excellent=\nActually made my hair frizzier,=Unsatisfactory=\nNeed higher magnification,=VeryGood=\nNON-RETURNABLE & not good for dry skin,=Unsatisfactory=\nNot really worth it...,=Poor=\nOne of the best products for intestinal problems,=Excellent=\nFLORAL AND FRUITY SCENT,=VeryGood=\n\"Good stuff, fleeting scent, non-staining.\",=VeryGood=\nPretty basic mascara,=Unsatisfactory=\nBest for price and the highest quality Rose Water,=Excellent=\nSmall,=Unsatisfactory=\nGreat LARGE bottle,=Excellent=\nNo more clogged pores!!!!,=VeryGood=\nclutter in my make up bag,=Poor=\nSafe for sensitive skin,=Excellent=\nBEST SKIN CREAM,=Excellent=\nLight weight lift,=Good=\nSmooth coat,=VeryGood=\nThis is a great serum!,=Excellent=\nDon't waste your money...,=Poor=\nOverpriced Moisturizer Not a Styling Creme,=Unsatisfactory=\nTHE BEST PRODUCT FOR OUR WOOD FLOORS WE HAVE FOUND...WE ARE TALKING ALMOST 50 YEARS HERE FOLKS,=Excellent=\nits okay,=Good=\nTone my skin,=Excellent=\nGreat stuff!,=VeryGood=\nGood stuff,=VeryGood=\nBleach BURN,=Good=\nOK for the price,=Unsatisfactory=\nToo Flimsy,=Unsatisfactory=\nNot Ideal for Natural Hair,=Unsatisfactory=\nAaaaaaah..... so beachy,=Excellent=\nIt shows through because it's too white,=Unsatisfactory=\nGREAT,=VeryGood=\nMade my face burn,=Unsatisfactory=\n\"Greasy feeling to it, does not work as well as others I have tried and used.\",=Unsatisfactory=\nWhat the heck?,=Poor=\nFabulous Fig and Highbeam Tan,=Good=\nhated this curling iron,=Poor=\n\"Good, not miraculous\",=VeryGood=\nGreat Cleanser,=Excellent=\nOK hand and foot treatment,=Good=\ngood brush but terrible durability,=Poor=\nNot good enough for me,=Poor=\nThis and lemon verbena are two of my favorite scents!,=Excellent=\nI LOVE THIS FRAGRANCE...,=Excellent=\nGreat!!!!,=Excellent=\nGo acrylic,=Poor=\nOMG! I THOUGHT THIS WAS The best product...MISTAKEN,=Poor=\nNo applicator either,=Good=\nThe best,=Excellent=\nNo effect,=Unsatisfactory=\nDisappointing but bravo to Olay for accepting return,=Unsatisfactory=\nPasty looking,=Poor=\nSmells great,=VeryGood=\nHORRIBLE,=Poor=\nToo Stinky,=Unsatisfactory=\nEXPIRED!,=Poor=\nEhh,=Unsatisfactory=\nGood top coat,=Good=\nPrimer,=Good=\n\"Honey and the Moon = Sickly Sweet, Instant Headache\",=Poor=\n\"Yes, it works to straighten hair\",=Good=\nLavender oil Okay,=Good=\nNot the best on the market,=Unsatisfactory=\nseems Good,=Good=\nWorks great!,=VeryGood=\nBrush cleaner...,=Excellent=\nDrying and Harsh,=Poor=\nFake,=Poor=\nDon't like the rotary action . . .,=Poor=\nHard to apply,=Unsatisfactory=\nNot Sure I'd Get it Again,=Good=\npleased,=VeryGood=\nLove it!!!!,=Excellent=\nGood shampoo,=VeryGood=\ndon't last for weeks,=Unsatisfactory=\nVery happy,=Excellent=\nNice Scent + Moisturizing,=VeryGood=\nGreat shampoo,=Excellent=\nOK . .,=Good=\nThis little tool does the trick to an extent........,=Good=\nlooks great!,=VeryGood=\nNo Burn to Skin or Purse,=Excellent=\nNot for Oily Hair,=Good=\nVery good product !!!!!!!!!!,=VeryGood=\nNot natural looking,=Unsatisfactory=\nSeductive,=VeryGood=\nIn my opinion,=VeryGood=\nStrong scent,=Unsatisfactory=\nAwesome...........,=Excellent=\nTerrible....BUYERS BEWARE!!,=Poor=\nGreat Iron. Great Price.,=Excellent=\nMy new primary!,=Excellent=\nblah for blonde over-processed hair,=Good=\nnot for people with sensitive skin,=Unsatisfactory=\nFour Stars,=VeryGood=\nCounterfeit?,=Poor=\nGreat!,=Excellent=\nGreat Value,=Excellent=\nDon't waste your money,=Poor=\n\"Decent Shampoo, yet too much protein for me\",=Unsatisfactory=\nOk for in a pinch,=Good=\n\"Feels good, smells meh...\",=Good=\nWaste of Money,=Poor=\n\"Good, but a bit pricey for what you get\",=VeryGood=\nHilarious!,=VeryGood=\nWorks as described,=Excellent=\nThis is not the conditioner you're thinking of,=Poor=\nWill not buy again,=Unsatisfactory=\nOffers Moisturizing Relief,=VeryGood=\nGreat color!,=VeryGood=\nGets really hot- nice for irons,=VeryGood=\nOrdered BlackOpium got patchauly by DayDream,=Poor=\nBeauty lover,=Excellent=\nMaybe I have a bad batch?,=Poor=\n\"Did not improve my psoriasis, but didn't make it worse, either\",=Unsatisfactory=\nExfoliation at its finest.,=Excellent=\nNot good for Black peoples hair,=Unsatisfactory=\nTorture device,=Poor=\nThe name is not always an indication of quality!!!!!!!!!!!,=Unsatisfactory=\nMends Menopausal Hair,=Excellent=\nplease improve this product!,=VeryGood=\nNice enough,=Good=\n\"Ok, not great! Too light for me.\",=Good=\nWorks well,=VeryGood=\nGreat for pregnancy acne,=VeryGood=\nOne of my favorites,=Excellent=\nConair 1875 watt ionic Conditioning Hair Dryer,=Excellent=\nWorks,=Good=\nmake up,=Poor=\nOK,=Unsatisfactory=\nFairly good,=Good=\nstrong and fruity,=Unsatisfactory=\nCan get this SO much cheaper!,=Unsatisfactory=\nNot bad,=VeryGood=\nOne of the best moisturizers!,=Excellent=\nGood product,=Excellent=\nThese fell apart too quickly.,=Unsatisfactory=\nI like L'Oreal Paris Mascara,=VeryGood=\nRed burning and dry scaly skin under eyes after use.,=Poor=\nDoesn't work for oily scalp dandruff,=Poor=\nThis has PARABEN,=Poor=\nGreat oil at a great price,=Excellent=\nI think it is ruining my hair!,=Poor=\nGreat Product!,=Excellent=\nMade a difference in my hair -- but for the better?,=Unsatisfactory=\nOkay so far,=VeryGood=\n\"Rich, Thick Conditioner\",=VeryGood=\n\"The lotion's alright, but the smell leaves something to be desired\",=Unsatisfactory=\nLeaves the Skin Very Soft,=VeryGood=\nToo hard to put on and dont fit securely,=Poor=\nCloying fragrance,=Unsatisfactory=\nI like it but...,=VeryGood=\n\"Personally, I prefer a Hair Dryer With Straightening Attachments\",=Unsatisfactory=\nGreat Unisex Scent,=VeryGood=\nDEGENERIST,=Poor=\nMore floral than lemon but I still love it,=VeryGood=\nDidn't moisturize like I thought it would,=Poor=\nJust O.K.,=Unsatisfactory=\nkind of does it's job,=VeryGood=\nI look like a tired hooker,=Poor=\n\"PERFECT CLEANSER FOR KITCHEN RIDS HAND OF SMELLS, GREASE AND SMELLS DEVINE-UNISEX\",=Excellent=\nNot worth it,=Poor=\nSTIFF,=Poor=\n\"If you have oily skin, I'd steer clear.\",=Unsatisfactory=\nugly color,=Poor=\nsmooth,=Excellent=\nso-so,=Good=\nNot quite sure the purpose...,=Unsatisfactory=\nOkay scent,=Good=\nNot much difference.,=Unsatisfactory=\nMaybelline eye products are the greatest!,=Excellent=\nEasier to just use fingers,=Poor=\nnot for me,=Unsatisfactory=\nNot worth the money,=Unsatisfactory=\nRETURNED!  DID NOT LIKE!,=Poor=\nDries too quickly,=Unsatisfactory=\ncontainer does not protect retinol from light and air,=Poor=\n\"I don't think this is the \\miracle product\\\"\" I've been looking for!\"\"\",=Unsatisfactory=\nGreat for 1-2 inch length hair.,=Excellent=\n\"Too much effort, not much result\",=Unsatisfactory=\nDoesn't go very far weak on lather.,=Unsatisfactory=\nNot worth the money,=Unsatisfactory=\nNo effect,=Poor=\nIt's okay.,=Good=\nnot sure if it is me but it keeps ruining my manicure,=Unsatisfactory=\nCoconut lotion,=Good=\nYou are clean so I guess it's good,=VeryGood=\nMust have skin care product!!,=Excellent=\nWhat happened,=Unsatisfactory=\n\"Hempz has good body butter, but not as good as The Body SHop\",=Good=\nDoesn't work like I expected,=Good=\nOkay,=Good=\nSticky after -feel,=Good=\nOkay,=Good=\nNot really a stain,=Unsatisfactory=\n\"Non-greasy & pleasant, but tiny\",=Good=\nShe likes it and so far so good,=VeryGood=\nGreasy!,=Unsatisfactory=\nolay complete,=Excellent=\nOil of Olay fan slightly disappointed,=Unsatisfactory=\nDo not buy!,=Poor=\nCannot discern a noticeable difference,=Good=\nGood for Fading but have Patience!,=VeryGood=\nI use for hair detangling only,=Good=\nGreat under eye powder,=Excellent=\nKeeps Hair Soft and Silky Smooth,=Excellent=\nA little goes a long way,=VeryGood=\ndoesn't stay on for me,=Poor=\nWould have been nice if my bottle wasnt broken,=Unsatisfactory=\nIt's just ok...,=Good=\nMehh,=Poor=\nNice base coat,=VeryGood=\nIrritated my skin,=Unsatisfactory=\nOne Star,=Poor=\nOne of three fabulous natural products that work gently and well,=Excellent=\ni wish i didnt order this,=Poor=\nGet what you pay for,=Poor=\ndissapointed,=Poor=\nblond gets blonder,=VeryGood=\nVery disappointed in the new formula,=Unsatisfactory=\nI like it,=VeryGood=\nMy dog loves this.... and so do I!,=Excellent=\nLip Brushes for Latisse,=Good=\nPanda eyes for sure...,=Poor=\nOne of the more effective creams,=VeryGood=\n\"My favorite daily lotion in terms of texture and hydration, but anti-aging?  Hmm.  Not so sure about that.\",=VeryGood=\nPerfect set for me.,=Excellent=\nis it a pencil?,=Good=\nTerrible,=Poor=\nGentle Scrub,=Good=\nLove it,=Excellent=\nMona Lisa,=Good=\njust o.k.,=Unsatisfactory=\nliquid,=Good=\nIt's just okay,=VeryGood=\nThe scent is so nice... it's intoxicating!,=Excellent=\nGreat Product,=Excellent=\nNot sold as advertised: Contains fragrance so this product is not unscented,=Unsatisfactory=\nThe plates do not meet.,=Unsatisfactory=\nworks well,=VeryGood=\n8,=VeryGood=\nBetter than using a blow dryer,=VeryGood=\nWorks as required,=Good=\nAwkward!,=Unsatisfactory=\nDoesn't last,=Unsatisfactory=\nShould Have For Afro-American/Ethnic Hair In Description,=Good=\nReally wanted to love it...,=Good=\nStatic Free Brush,=Excellent=\nDries out hair,=Unsatisfactory=\n\"Drying, Cakey feeling and Caused a breakout\",=Poor=\nBroken and Used,=Poor=\nNot for me,=Unsatisfactory=\nit was alright,=VeryGood=\nDHS Clear Shampoo,=Excellent=\nGreat daily moisturizer,=Excellent=\nDries Out Hair,=Unsatisfactory=\nThe lowest priced with SPF 30 and GREAT for sensitive skin,=Excellent=\nGreat but pricey,=Good=\nBest I've Tried,=VeryGood=\nReally Works,=Excellent=\ndaring and different,=VeryGood=\nMy go-to color for the past seven years,=Excellent=\n\"If you're looking for old-school Patchouli, keep looking\",=Unsatisfactory=\n\"Clog Your Pores, Stay Dirty, Feel Stale\",=Poor=\nPretty...but,=Unsatisfactory=\nwaste of money,=Poor=\ngreat for hair,=Excellent=\nBest yet,=Excellent=\nDon't pay full price!,=Good=\nIt really makes you feel good when applied,=Excellent=\n\"Finally, an eye moisturizer that doesn't cake\",=VeryGood=\ngreat product,=Excellent=\nSoft hands and feet,=VeryGood=\ngood moisturizer but...,=VeryGood=\nit is ok,=Good=\nGood color,=Excellent=\n\"My Box Color Said Darkest Brown, My Hair Color Result Was Blue/Black\",=Poor=\nIt's Alright,=Good=\nNot for me,=Unsatisfactory=\nbrush,=Unsatisfactory=\nOkay but not the best for Oily skin!,=Good=\nOh my gosh this stuff is great!,=Excellent=\nrelieves redness but leaves grease.,=VeryGood=\nFace cream,=Good=\n\"Disappointed.  NO better than drug store, maybe worse?\",=Unsatisfactory=\nBeautiful color from NARS,=VeryGood=\nGreat Anti Itch Lotion,=Excellent=\nGood but not great,=Unsatisfactory=\nI think this is just okay,=Good=\nShould have stuck it out longer,=Unsatisfactory=\nOk.,=VeryGood=\nDoes Not Reduce Puffy Eyes,=Poor=\n\"Broke after less than 30 days, misleading advertising about green head.\",=Poor=\nGreat Home System,=VeryGood=\nDisappointed in a brand I thought I knew,=Good=\nNot all that!!!,=Good=\n\"Starwalker doesnt make you an Astronaut,but it elevates your presence (no pun intended)\",=VeryGood=\nBADLY STAINS YOUR NAILS,=Poor=\nIt works.,=Good=\nDidn't do a thing.,=Poor=\nUm.....what is that smell??,=Good=\nI use Pale Gold,=VeryGood=\nThis is a good basic mascara,=VeryGood=\nNot worth it. AT ALL,=Poor=\nHUH!?,=Unsatisfactory=\nIt made my hair feel like sandpaper,=Unsatisfactory=\nWet 2 Straight Straightening Iron,=VeryGood=\nGREAT FOR SENSITIVE SKIN,=Excellent=\nDisappointed...,=Unsatisfactory=\n\"Pretty and unique images, but very poor quality\",=Poor=\nLove and hate!,=Good=\n\"OK, but not great\",=Good=\nruins your hair,=Poor=\n\"A Good Foundation, A little heavy\",=VeryGood=\n\"Not good, like precleanse by dermalogica better\",=Poor=\nMake it at home before you invest,=Poor=\nLove It!,=Excellent=\nMore bronze than Brown...,=Poor=\nNot impressed with this buffer!,=Poor=\nFULL COVERAGE,=Excellent=\nLove it!,=VeryGood=\nGreat price for this!,=VeryGood=\nlove this lotion!,=Excellent=\nWashed me out! Too thick of a product on face,=Poor=\nJust meh...,=Unsatisfactory=\nsave your money,=Poor=\n\"Smells good, but has Fragrance.\",=Good=\nDo not like,=Poor=\nCan't see much of a difference,=Good=\nMakes me wants to do certain naughty things to my boyfriend,=Excellent=\nVery Good Lotion With Funny Name,=VeryGood=\nNot like the BE brushes bought in store,=Poor=\nSimply didn't work,=Poor=\nAn Every Day Necessity,=Excellent=\nim not sure?,=Unsatisfactory=\nWorks nice but smells like yuck.,=Good=\n\"Not bad, great for pool/beach make up\",=VeryGood=\n\"not sure yet, but...\",=VeryGood=\nBroke me out!!!,=Unsatisfactory=\nnot for stretch marks :(,=Good=\nAwaiting the miracle....,=Good=\nSweet tooth,=Unsatisfactory=\nTan Towels,=Poor=\nI love it.,=Excellent=\nIt's okay,=Good=\ndidn't work for me,=Unsatisfactory=\nDo not get this on your clothing!,=Good=\nAlpha Hydrox Ehanced Lotion,=Excellent=\nNot worth the price or effort. Not a recommended product.,=Poor=\nGood budget base for shadows,=Good=\nGreat if you don't like lather and enjoy smelling like air freshener!,=Unsatisfactory=\nHeavy Hairdryer,=Good=\n\"Love the name, Love the color!\",=Excellent=\ndon't bother,=Unsatisfactory=\nLove this gentle product!,=Excellent=\nThumb sucking NO MORE!!,=Excellent=\nNot as good as in the old days,=Good=\nWorks well,=VeryGood=\nIt's ok,=Unsatisfactory=\nNot as bad as I thought,=VeryGood=\nok,=VeryGood=\nthe only eye make up remover I use,=Excellent=\nBought as a gift,=Good=\nFusion Beauty Lip Fusion,=Excellent=\nStronger hair!,=VeryGood=\nNice shaving bowl,=VeryGood=\nRECOMMEND,=Excellent=\nA Real Nightmare!!!,=Poor=\nGreat essential for hair drying with minimal fuss,=Excellent=\nVery UNhappy WITH RESULTS,=Poor=\nWorks as advertised,=VeryGood=\ntooo bright and glittery,=Poor=\nEmerita Pro-Gest Cream,=Excellent=\nGood price for a very reliable product,=Excellent=\nGood but smudges,=Good=\nPointless,=Good=\nWell it works,=VeryGood=\new,=Poor=\ngood product,=Good=\nnot their best,=Good=\nSo far so good,=Excellent=\nNot as Advertised,=Poor=\nLove this stuff,=Excellent=\ncheap,=Unsatisfactory=\nIt's ok,=VeryGood=\n\"TRUELY AMAZING, AND FULL OF GRACE!!\",=Excellent=\nMy favorite body cream,=Excellent=\nDisappointing,=Unsatisfactory=\nI like it.,=Excellent=\n\"My Go-To Cleansing Shampoo - Can be used as a Body Wash, too.\",=Excellent=\nThere's good and bad...,=Good=\n\"MAY WORK FOR SOME, BUT NOT FOR ME\",=Unsatisfactory=\nVaseline Sheer Infusion With STRATYS 3 - An Adequate Body Lotion But A Bit Pricey...,=Good=\nFades to a weird color.,=Unsatisfactory=\nNot impressed,=Good=\nRoc Retinol correxion deep wrinkle night cream,=Excellent=\nShrek Sized Brush..........:(,=Good=\nSmells good but thats it...,=Poor=\ndoesn't remove makeup at all.,=Poor=\n25+ Year User of This Product,=VeryGood=\ngreat,=Excellent=\nno noticeable improvement,=Unsatisfactory=\nyou get what you pay for,=Good=\nCheap but works,=VeryGood=\nNot 100% Argon Oil,=Poor=\nA Great Mask,=VeryGood=\nToo thick,=Poor=\nPrice,=Poor=\nNice gentle exfoliator,=VeryGood=\nWonderful hydrating and brightening facial skin cream at the right price!,=Excellent=\nNot worth it,=Poor=\n\"NOT FOR PEOPLE W SCENT ALLERGIES: Causes burning sensation, redness, breakouts, self-doubt\",=Unsatisfactory=\nSt. Ives Naturally Clear Green Tea Scrub :(,=Poor=\nThis product really delivers...,=Excellent=\n\"Primer, Any Primer Product, Does NOT Equal Moisturizer/SPF\",=Unsatisfactory=\n\"Loved the effects, but ultimately couldn't tolerate the smell\",=Unsatisfactory=\nFake beauty blender,=Poor=\nokay,=VeryGood=\nNot such a good deal!,=Good=\nNOT A GOOD DEAL..,=Poor=\nMy skin hasn't looked this good in a long time!,=Excellent=\nBest daily exfoliator,=Excellent=\nthick and creamy,=VeryGood=\nToo greasy and irritating (???),=Unsatisfactory=\nOMGosh! ABSOLUTELY FANTASTIC!!!,=Excellent=\nDoesn't have little tube that connects to top for liquid to come out.,=Poor=\nShampoo,=Excellent=\nGentle Refreshment,=VeryGood=\nLove it!,=Excellent=\nDRATS!,=Unsatisfactory=\na nice leave-in conditioner,=Excellent=\nGood Knock Off of the real thing,=VeryGood=\nWatts Beauty 100% Can't tell the different,=Unsatisfactory=\nDries out skin,=Good=\nRosewater and Glycerin,=VeryGood=\nSmells Good,=Excellent=\n\"Ok, but scent is fleeting\",=Good=\nOnly use this soap on body acne.,=Poor=\nEXCELLENT!,=Excellent=\nNot as good as others,=Unsatisfactory=\nGot a rash under my eye after using this for 2 weeks.,=Unsatisfactory=\nexfoliates but no blackhead eraser for me,=Good=\nno difference,=Unsatisfactory=\nIDK,=Good=\nGreat Product,=VeryGood=\nBest of the bunch,=VeryGood=\nMakes you feel so much better in the hospital/rehab,=Excellent=\nlikeable,=VeryGood=\nnot for me,=Good=\n\"Interesting fragrance, little strong but nice\",=VeryGood=\nTOO LONG,=Unsatisfactory=\nNot what I'd imagined...,=Unsatisfactory=\nChalking it up to a huge disappointment,=Unsatisfactory=\nCute but waxy,=Good=\nNice,=VeryGood=\nTotal Crap,=Poor=\nGood Sunscreen!,=VeryGood=\nIs good,=VeryGood=\nGreat Creme but...,=VeryGood=\n\"Eh, it's okay\",=Good=\n\"CLUMPS, CLUMPS, AND MORE CLUMPS\",=Poor=\nIt smells good!!,=Good=\n\"Not for curling, good for managing crazy hair\",=Good=\nCaused only problems for me,=Poor=\nOnly complaint: Pricey,=VeryGood=\nAwesome,=Excellent=\nDidn't do anything for my hair.,=Poor=\nDark Spots Removal,=Good=\n\"Another \\me-too\\\"\" fragrance that's unoriginal\"\"\",=Unsatisfactory=\nperfect,=VeryGood=\nNot for me,=Unsatisfactory=\nNot really worth the time,=Good=\nToo rough for the eye area,=Unsatisfactory=\n\"Bad colors, good foundation.\",=Good=\nLove this scent,=Excellent=\nBest clarifying shampoo for swimmers!!!,=Excellent=\nallergies big time!,=Poor=\ntinted? horrible idea.,=Unsatisfactory=\nHas mineral oil...,=Poor=\nLove your hair and pay the extra money for one ...,=Unsatisfactory=\nblah....,=Poor=\nGreat for backne,=VeryGood=\nDecent,=Good=\nA bit like Cetaphil,=Unsatisfactory=\nToo drying for my skin.,=Good=\nwill purchase again,=Excellent=\nBallet Slippers is lovely,=Excellent=\nI guess you get what you pay for,=Poor=\nANOTHER ALTERNATIVE TO ALL THESE GEL PRODUCTS,=Unsatisfactory=\nNice lotion; bottle not sturdy enough for delivery by mail,=Good=\nAdds control on blow dry days,=VeryGood=\nGreat Lotion,=VeryGood=\nNot for sensitive skin,=Good=\n\"These worked GREAT for me - five times, anyway! Now they've cracked, and been dumped in the trash!\",=Poor=\nMeh,=Good=\n\"Great product, Works fine, Thank you.\",=Excellent=\nGrease and Oil,=Poor=\nWaste of money,=Poor=\nIck,=Poor=\nFavorite of the AXE soaps!,=VeryGood=\nA nice feminine scent that the wife and I both like.,=VeryGood=\nAmazing!,=Excellent=\nNot long-lasting,=Good=\n\"Non-irritating, good moisturizer, but not a miracle serum\",=Good=\nExtremely streaky and gets off on clothes,=Unsatisfactory=\nWorks great but..,=Good=\nsheal butter,=Excellent=\nWonderful for uneven tone on face and more,=VeryGood=\nYuck,=Poor=\nRoc Retinol Correcxion eye cream,=Good=\nIt's okay.,=Good=\nDon't waste your money,=Unsatisfactory=\nDEAD BUG INSIDE!!!,=Poor=\nSkin smoothing without irritation...,=VeryGood=\nNot the Best,=Unsatisfactory=\n\"Fantastic Product, Bad Container System\",=Excellent=\nBox keeps shrinking but not the price,=Good=\nHellz no,=Unsatisfactory=\nIt was fine until it stopped working randomly...,=Unsatisfactory=\n\"Different from original, but still okay\",=VeryGood=\nGood price.,=VeryGood=\nrecommend,=Excellent=\nThey work,=Good=\nLeft My Hair Feeling Gluey,=Poor=\nI wanted to love it,=Good=\nWorks for a short time,=Good=\nI was actually surprised by this product,=VeryGood=\n\"Not needed, but nice\",=VeryGood=\nseems to work,=VeryGood=\nOk product,=Unsatisfactory=\nGood product,=VeryGood=\nREALLY works!!,=Excellent=\nIt's Okay,=Good=\nDoesnt work,=Unsatisfactory=\nDoes what it's meant to,=Good=\nProduct has left me with scarring.,=Poor=\nWen Haircare,=Excellent=\nEh...it's a straightner,=VeryGood=\nGreat!,=Excellent=\n\"Good for face, not for body\",=Good=\nMuch cheaper at Target.,=Poor=\ngoat soap,=Excellent=\nBeen using for fifteen years now - look great,=Excellent=\n\"Smells nice, goes on well.\",=Good=\nNot too fond of them..,=Unsatisfactory=\nA good moisturizing conditioner for the price,=VeryGood=\nIt didn't work for me.  :-(,=Unsatisfactory=\nIt works but I think I like the teasing brush just a little more,=VeryGood=\nAs with the foam wash,=Good=\nGreat product!,=Excellent=\nwhite out!,=Excellent=\nDefinitely not a quick fix,=Poor=\nThrew it out,=Poor=\nExcellent,=VeryGood=\nI hated the smell.,=Unsatisfactory=\nGood polish corrector,=Excellent=\nDO NOT USE!,=Unsatisfactory=\nNot Like the Lotion,=Poor=\nworks really well,=VeryGood=\nits ok,=Good=\nMmmm.....Lip Butter,=VeryGood=\nSo-so,=Good=\n\"If you smell like a fruit after using this, it might be for some other reason...\",=Good=\n\"WORKS GREAT, BUT POOR QUALITY\",=Good=\nNot my foundation,=Poor=\nGOOD CREAM,=VeryGood=\nClean and Fresh for Summer!!,=Excellent=\nBroke out from silicones,=Poor=\nReview for Toast of New York color. Good value.,=VeryGood=\n\"Good shears, but not sure...\",=Good=\n\"\\Better than what I have now\\\"\"\"\"\",=Good=\nhmm...,=VeryGood=\nColored hair dye,=VeryGood=\nSort of works,=Unsatisfactory=\nI wanted to try this because all the reviews,=Unsatisfactory=\nGood for anything,=Excellent=\nLOE IT,=Excellent=\nNo lasting power,=Good=\nBack to Using My Wild Growth Hair Oil!!,=VeryGood=\nNice and Smooth,=VeryGood=\nDon't like it,=Poor=\nDon't waste your money,=Poor=\namazing,=Excellent=\nGood product for the money..,=VeryGood=\nDoesn't blend AT ALL.  Terrible!,=Poor=\nNothing Compares,=VeryGood=\nFeels great on face too!,=VeryGood=\nsensitive skin...it's ok,=VeryGood=\nTwo Stars,=Unsatisfactory=\nSmells rancid,=Poor=\nlove it,=Excellent=\nWorks well to remove Acquarella brand nail polish,=Excellent=\nvery good hot air brush. it's easy to use and make your hair shiny and curly too,=VeryGood=\noverpriced,=Unsatisfactory=\nthis dryer sucks,=Poor=\nnot for my kinky curly hair - overrated,=Poor=\nGoes on smooth - Not irritating,=Excellent=\nNot for layered hair,=Good=\n\"Nice but not sexy or young, reminds me of Nordstrom\",=Good=\nThe best.,=Excellent=\n\"Creates smooth, soft waves\",=Excellent=\nWarning!!!,=Excellent=\nNot Greasy,=Excellent=\n\"okay product, but too drying for me\",=Good=\ngreat match.,=VeryGood=\nDid not live up to the hype...,=Unsatisfactory=\nI thought glue is suppose to stick...,=Unsatisfactory=\nGlass nall files are wonderful but,=Good=\nNot real impressed,=Good=\nNot the same as other &#34;clear&#34; product,=Good=\nMy hair no longer has to look like a brillo pad!,=Excellent=\nWork my A................,=Poor=\ndoes not stay in hair very flimsy,=Poor=\nwaste of money,=Poor=\nWant a perfect red? Look no further.,=Excellent=\nDepends,=Good=\nGood,=VeryGood=\nBest Straightener I've Ever Had...BUT...,=VeryGood=\nreally moisturizes my dry feet and leaves them soft!,=Excellent=\nA little disappointed,=Good=\n\"Increases shine, but a little goes a long way\",=VeryGood=\n\"Solid cleanser, if a bit overpriced.\",=VeryGood=\nNot impressed,=Poor=\nToo expensive for what it is,=Unsatisfactory=\n\"OK, but you get less product\",=Good=\nNothing special,=Poor=\nNO...,=Poor=\nLOVE IT,=Excellent=\nNot really Fuscia,=Unsatisfactory=\nStinks,=Good=\nPackage and box and soap itself crushed,=Unsatisfactory=\nUsed for YEARS!!,=Excellent=\nThe best,=Excellent=\nPoor quality,=Poor=\nDoesn't work,=Unsatisfactory=\nDon't bother with anything from this brand.,=Poor=\nMade my hair look and feel awful,=Poor=\nDecent product,=Unsatisfactory=\nAccomplishes its purpose,=Excellent=\nGreasy,=Unsatisfactory=\nsigh,=Poor=\nNOT for thin fine hair,=Poor=\nGlycerine Soap with Vitamin E,=Excellent=\nAm i the only one?,=Unsatisfactory=\nAleo Skin Gel is a staple around here,=Excellent=\n\"Does what it says, good clean.\",=VeryGood=\nEw.,=Poor=\nOkay for now.,=Good=\nOrigins,=Unsatisfactory=\nGreat hair dryer and a great cost,=Excellent=\n\"Almost too soft, but as advertised.\",=VeryGood=\nEffective but use sparingly,=Good=\nGreat for dry damaged hair!,=Excellent=\nGreat product,=Excellent=\nwild growth hair oil.,=VeryGood=\nI have had MUCH better,=Unsatisfactory=\n\"Amazing gloss, unsanitary packaging\",=Good=\nNice,=VeryGood=\n\"helps a little - not really, actually\",=Poor=\nRefreshing soap for summer,=Excellent=\n40 Carrots Moisture Splurge is Great,=VeryGood=\nNot at all what I thought,=Unsatisfactory=\nBroke Me Out,=Poor=\nHappy so far,=Excellent=\nGod product.,=VeryGood=\ndecent round brush - just beware of counterfeits,=Good=\nOh La Lah,=VeryGood=\nNot a fan of the Olay Lip Treatment,=Unsatisfactory=\nPretty Color,=VeryGood=\nNoxious odor,=Poor=\nReturned this product,=Unsatisfactory=\nAwesome color....,=Good=\nmy favorite for years,=Excellent=\n\"Creamy, good fragrance, not sticky or oily on hands or hair\",=VeryGood=\nGood product,=Unsatisfactory=\nWhat conditioner?,=Good=\nFor the price I expected greatness,=Unsatisfactory=\nGreat product But...,=Good=\nAmazing moisture!,=Excellent=\nGreat oil,=Excellent=\nBROKEN - messy!,=Poor=\nToo soft,=Good=\nJust got it,=Excellent=\n** These reviews are for different items ***,=Good=\nHorror,=Poor=\nBest. Cleanser. Ever.,=Excellent=\nperfect for lashes,=Excellent=\nDon't Buy NUDE SHADE,=Poor=\n\"Worked for our 4 year old thumbsucker,\",=Excellent=\neyecream is not that effective,=Good=\n\"Dull, in more ways than one\",=Unsatisfactory=\nDid not work,=Unsatisfactory=\nRetinol Anti-Wrinkle Serum,=Poor=\nSeems to be effective for PCOS.,=Excellent=\nHad to stop using due to skin sensitivity,=Unsatisfactory=\nHmmm,=Good=\n\"Not horrible, not great.\",=Unsatisfactory=\nWHITE OUT,=Poor=\nworks great but has more chemicals in it than you'd expect,=VeryGood=\n\"Pretty good ...powerful protection, despite a few drawbacks\",=Good=\nnever got them.,=Poor=\nVery happy!,=Excellent=\nZeno zaps my pimples before it gets out of control,=VeryGood=\nEyebrow Tint,=Good=\nEyelashes Fall Out,=Good=\nGreat Product,=Excellent=\nPretty color,=VeryGood=\n\"Nasty smell, feels terrible on hair\",=Poor=\nBurned my forehead...,=VeryGood=\n\"No lather, doesn't work\",=Poor=\nWonderful!,=Excellent=\nnot as effective as other Mario Badescu products,=Unsatisfactory=\nfeels awesome but might not last very long,=VeryGood=\nFour Stars,=VeryGood=\nQuick ship,=Unsatisfactory=\nNo results for me,=Poor=\nDIDNT LIKE,=Unsatisfactory=\nProduct did not work,=Poor=\nDidn't notice a difference,=Unsatisfactory=\nFell apart right out of the box,=Poor=\nNot what I was expecting,=Unsatisfactory=\nOk,=Good=\nGenuine Product?,=Poor=\n\"Not quite magic, but works well\",=VeryGood=\ndidnt work,=Poor=\nTo big,=Poor=\nDidn't do anything for me.,=Unsatisfactory=\nToo heavy for me,=Unsatisfactory=\nYuck,=Poor=\nhorrible!,=Poor=\nToo strong for me,=VeryGood=\ngood price good product,=VeryGood=\n\"nothing special, but it's cheap so...\",=Good=\nWorks well but you must rotate...updated,=Good=\nWow Impressive!,=Excellent=\n\"Hey, what about us 100's?  95's?\",=VeryGood=\nToo Pasty,=Unsatisfactory=\nDo not buy from Kiosks,=Poor=\nToo powdery,=Unsatisfactory=\n\"Doesn't do anything for me, stings the eyes\",=Poor=\nOnly if you want to pull hair.,=Poor=\n\"It works but yeah, it's green\",=Good=\nawsome ..awasome...for BLACKHEADS!!!,=Excellent=\nI am torn about this one,=Good=\n\"So disappointed, It just gave me an awful orangish colour!\",=Poor=\nShiny and Burns,=Unsatisfactory=\nSmells like trees,=VeryGood=\nGreat product for sensitive skin,=Excellent=\nNot enough moisture to solve Colorado Hands.,=Poor=\nNeeds a stopper to measure drops better,=VeryGood=\nA Problematic Conditioner,=Unsatisfactory=\nNot impressed,=Unsatisfactory=\nNice neutral with subtle sparkle!,=VeryGood=\nok,=Good=\nAverage product,=Good=\nLicensed Cosmetologist and Product Experts review,=Excellent=\nNot what I expected..,=Unsatisfactory=\ndetangles,=Good=\nNice facial moisturizer.,=VeryGood=\nThis stuff smells and doesnt work,=Poor=\ngreat to keep hair off my face,=Excellent=\nMade me break out!,=Poor=\nDescent product. Not drying like other product. Not as incredible as some other comments either...,=VeryGood=\nGets my hair clean!,=Excellent=\nIt was okay,=Good=\nThis color isn't for me but...,=Good=\nGood,=VeryGood=\nAnti aging nahhh,=Good=\nMind Blowing!!,=Excellent=\nNOT impressed,=Poor=\nMost use along with the rest of the product,=Excellent=\nHair breakage,=Poor=\nmade my hair worse,=Unsatisfactory=\nGood treatment,=VeryGood=\nSo Sar-So Good,=VeryGood=\nNever purchase again,=Unsatisfactory=\nNice but not wow-worthy.,=Good=\n\"Pay for Keratin, don't get much\",=Good=\nGreat for the no-'poo crowd,=Excellent=\nOVERALL IS OK,=Good=\nthese are sufficating,=Good=\nVaseline Sheer Vitamin Burst,=Unsatisfactory=\nBest Drugstore Remover!,=VeryGood=\nCream is basic,=Unsatisfactory=\nA bit disappointed,=Good=\nfavorite mascara! &lt;3,=Excellent=\nMy favorite OPI color,=Excellent=\nFavorite deodorant,=VeryGood=\nsooty undereyes,=Unsatisfactory=\nPEDICURE TOE SEPERATOR,=VeryGood=\nnot as bright as i expected,=Good=\nFRIED MY HAIR,=Good=\nOkay but not the best!,=Good=\nBought for Wigs,=Excellent=\nGet a Smaller One for Effectiveness,=Good=\nFantastic,=Excellent=\nDidn't work,=Unsatisfactory=\nOne of my favorite nail colors,=Excellent=\nA decent brush,=VeryGood=\nMade for a Dollar Store,=Poor=\ndj6136,=VeryGood=\n\"Ok, but not as expected\",=Good=\nCouldn't even use.,=Poor=\nExtremely Fragrant,=VeryGood=\nGreat,=VeryGood=\nits not that great.,=Unsatisfactory=\nMoody Mauves,=Unsatisfactory=\nGood facial scrub,=VeryGood=\nnot good enough,=Good=\nworthwhile accessory to my kit,=VeryGood=\n\"DO NOT buy, nasty!\",=Poor=\nYou get what you pay for,=Unsatisfactory=\ngreasy hair,=Poor=\nFive Stars,=Excellent=\nGood lotion but obnoxious smell,=Good=\nmakes my hair frizzy,=Unsatisfactory=\nTerrible!,=Poor=\nGreat product - nice for a natural looking hair do,=Excellent=\nIt's okay.,=Good=\nI love the microweb fiber... Just not my bottle.,=Good=\nwish i hadn't wasted money on it,=Poor=\nPerfect pink!,=Excellent=\nGood,=Good=\n\"Great, but toss the refresher.\",=Excellent=\nExcellent - To be used as part of the Acquarella system,=Excellent=\nBeware if Sensitive!,=Poor=\nListing Doesn't Show ALL Ingredients,=Poor=\nHORRIBLE,=Poor=\nNot my color,=Unsatisfactory=\nDoesn't Shatter Good,=Good=\nLove it!,=Excellent=\nChanged a Classic for the Worse,=Poor=\nI don't know why I bought this,=Unsatisfactory=\nDissapointed,=Unsatisfactory=\nHorrible,=Unsatisfactory=\nGreat as an instant but...,=Good=\nGood body wash but not rose,=Good=\nVery short cord.,=Unsatisfactory=\nLight moisturizer with SPF,=Excellent=\nDoesn't affect me!,=Good=\nThis stuff is what you're looking for,=Excellent=\nOver rated... I found others better,=Poor=\nSurprisingly nicer than I expected,=VeryGood=\nHard as Wraps,=VeryGood=\nSmells like a used diaper filled with Indian food,=Unsatisfactory=\nNioxin,=Good=\nStinks,=Poor=\nThe hubbys favorite!,=Excellent=\ngender issues in lotion?,=Unsatisfactory=\nGood Product But Be Careful with Timing,=VeryGood=\nProbably the best western bb cream but not for fair skinned people,=Unsatisfactory=\npleasantly surprised,=VeryGood=\nnot too good,=Unsatisfactory=\nFive Stars,=Excellent=\nDoes Not Reduce Puffy Eyes,=Unsatisfactory=\nhorrible!,=Poor=\nNot sure yet about the smell.,=Good=\nNot for me,=Poor=\nI hate this...,=Poor=\nToo much scrubbing and pulling on the eye area,=Unsatisfactory=\nWorst thing,=Poor=\nNo more chewing nails,=Excellent=\nSome major lengthening effect but it flakes off and smudges,=Unsatisfactory=\n\"Good stuff, good price\",=VeryGood=\n\"Sadly, not for me...\",=Unsatisfactory=\nSmells like a true man should,=Excellent=\nThe straightener did not work as it was supposed to,=Poor=\nJunk,=Poor=\n\"Not bad for the price, but not very absorbent\",=Unsatisfactory=\nNature's Gate Acne Treatment System,=Good=\nSkip it!,=Poor=\nDon't waste your time or money.,=Unsatisfactory=\nJust a typical mascara,=Unsatisfactory=\nMmmm,=Excellent=\nOk but don't think I will repurchase,=Good=\nDid not even tingle for ant aging effect,=Unsatisfactory=\nno difference,=Good=\nIcky sticky,=Good=\nHelped my dull hair,=VeryGood=\nThese hurt the skin around my eyes!,=Unsatisfactory=\nMade my face dry and peel,=Poor=\nNot Bad!,=Excellent=\nNot impressed,=Poor=\nDON'T BUY!,=Poor=\nMeh,=Unsatisfactory=\nI AM ALLERGIC TO THIS,=Poor=\nexactly as stated,=VeryGood=\nNot For Me,=Poor=\n\"Poor quality, started to tear on first use.\",=Unsatisfactory=\nLove this Perfume...,=Excellent=\n\"A light, sweet scent that most women adore\",=Excellent=\nhighly recommend it,=Excellent=\nnot as good as the previous formulation,=Unsatisfactory=\nDon't like this cream!,=Good=\nwell...,=Unsatisfactory=\nDid not like the color Ski Teal We Drop,=Unsatisfactory=\n\"Pleasant smell, and that's about it.\",=Unsatisfactory=\nNoisy and slow,=Good=\n\"Works great, just not by itself!\",=VeryGood=\nelf eyeshadow brush,=Good=\nmakes you breakout,=Poor=\nNot for me.,=Unsatisfactory=\nGood product,=Excellent=\n\"seems to work well, but really expensive\",=Good=\nSmooth shiney full hair,=Excellent=\nToo harsh for gel nails,=Unsatisfactory=\nFive Stars,=Excellent=\nExcellent Grip but cracks,=Good=\nit does'nt work fast,=Unsatisfactory=\nAMAZON ERROR -- TITLE DOES NOT SAY THIS IS A WASH!!!,=Poor=\nSo Good...,=Excellent=\nFeels good.  Doesn't do much. Deceptive packaging.,=Unsatisfactory=\nok,=Good=\nGood but difficult to put on,=Good=\nReally Works!,=Excellent=\ni think it is stinky,=Good=\n\"it's ok, but not a miracle\",=Good=\nok for price but..,=Unsatisfactory=\nSmells great!,=VeryGood=\nPretty red,=Excellent=\nVery good primer,=VeryGood=\nEh,=Unsatisfactory=\nMixed results,=Good=\nLashes,=Poor=\nClassic...,=Excellent=\nNice!,=VeryGood=\nLEMON FRESHNESS !,=Excellent=\nThese people suck!!,=Poor=\nOverpriced and too expensive to operate,=Poor=\nHerbatint is wonderful!,=Excellent=\nPatience is excellence,=VeryGood=\n\"Fun to use and it works, thumbs up\",=Excellent=\nPleasantly surprised - 4.5 stars,=VeryGood=\nA Mix of Greasy Cooking Oil Residue & Used Motor Oil... but MORE USELESS!,=Poor=\nI love this Shea Butter!,=Excellent=\nFeels Slimy,=Unsatisfactory=\nI don't like it because it feels thick and greasy.,=Unsatisfactory=\nToo white and streaky coverage.,=Poor=\nToning provides the balance your skin needs!!,=VeryGood=\nNice product!,=VeryGood=\nBetter than I expected,=VeryGood=\nNo Thanks,=Unsatisfactory=\n\"Good, Everyday Shampoo\",=VeryGood=\nYellow color broke when arrived,=Poor=\ngreat for sensitive skin,=VeryGood=\nThe smell is wonderful .. BUT,=VeryGood=\n\"it really, really works!\",=Excellent=\nNothing Special,=Unsatisfactory=\nNot the best I've tried........,=Unsatisfactory=\nLeft my hair lifeless!,=Unsatisfactory=\nI love the product.,=VeryGood=\nbad batch?,=VeryGood=\nehh...,=Unsatisfactory=\nLOVE LOVE LOVE,=Excellent=\nJUST NOT  FOR ME.,=Good=\nOther Organic Brand Less Expensive,=Good=\nSome what irregular,=Unsatisfactory=\nIt works! and for under $10.......,=Excellent=\nGood for Protecting Hair in Winter,=Good=\nNot so great,=Unsatisfactory=\nNothing good to report,=Poor=\nWorks Well,=VeryGood=\n\"Super pigmented, yes, but left a horrid pink cast.\",=Poor=\n\"No, no, no\",=Poor=\nGreat hair dye,=Excellent=\nPeppermint & Menthol,=Excellent=\nGreat for Handbag,=Excellent=\nmeh,=Good=\nLike it.,=Excellent=\nLike so far,=VeryGood=\nVery Good For Your Skin; Smells a Little Soapy,=VeryGood=\nSmoothing & Hydrating,=Excellent=\nIt doesn't hold,=Good=\nAndis 40055 Pro Style 1600 Hair Dryer,=Good=\ngreasy hair,=Poor=\nVidal Sassoon No Headache Headbands (2),=Excellent=\nOlay Regenerist Serum,=Excellent=\nOk,=Unsatisfactory=\nSticky,=Good=\nThe best!,=Excellent=\n\"Very hard to spread, didnt help eczema\",=Good=\nKind of disappointed!,=Good=\nNot doing it's job,=Unsatisfactory=\nBest After Care Product,=Excellent=\n\"To Gold For Naturally Dark Blonde, Good for Brunettes?\",=VeryGood=\nAlways apply on wet hair.....,=Good=\nThis is definitely a deception in description - DO NOT BUY!,=Poor=\nOkay,=Good=\nnot full cover nails!,=Poor=\nI love the Dove!,=VeryGood=\nEarthy and lovely,=Excellent=\nIt' cool,=Good=\nHighly recommended for the health conscious looking to up their game,=VeryGood=\n\"It doesn't make me feel as alert as a cup of coffee would, unless taken on an empty stomach with very little water...\",=Unsatisfactory=\nnice matte find,=VeryGood=\nWorks great,=VeryGood=\nTerribly Disappointing,=Unsatisfactory=\nNot good,=Poor=\nalright mascara,=Good=\nSkin Soft and Spple,=VeryGood=\nI've tried the rest.  Keep coming back to the best.,=VeryGood=\nNope.,=Unsatisfactory=\nCreamy Cake of Clean for your Face and Body,=Excellent=\nNice base coat.,=VeryGood=\n\"Very drying to the skin, with a residue on skin after washing. Smells like unscented lye soap. Terrible.\",=Poor=\nLittle goes a long way,=VeryGood=\nDefective & Just OK Curl,=Poor=\nDoes not work on gel nails,=Unsatisfactory=\nWaste of money.,=Unsatisfactory=\nWasn't what I was expecting.,=Unsatisfactory=\nI love this soap,=Excellent=\nVery disapointed,=Unsatisfactory=\nnot 2400,=Unsatisfactory=\nCloud Star Corporation Buddy Wash Lavender & Mint 16 Oz,=Good=\nWash cloth wantabe,=Unsatisfactory=\nWhat I learned from trying 5 different hydrating products,=Good=\npretty good deal,=Poor=\n\"Didn't make acne worse, but didn't make it any better either\",=Poor=\nGood Product,=VeryGood=\ndoesn't do anything,=Poor=\nMaybe It's Lost It's Effectiveness,=Good=\n2 thumbs down!,=Poor=\nnice,=Excellent=\nNOT for people with thick hair,=Unsatisfactory=\n3D Nail Art Stickers,=Good=\nLIFE SAVER,=Excellent=\nstrong scent,=Good=\nPlatinum Silver,=Excellent=\nMeh.,=Good=\nDried my hair out and what's up with the smell?,=Unsatisfactory=\n\"Not bad, but not the best.\",=Unsatisfactory=\nA little does NOT go a long way...,=Unsatisfactory=\n\"Good for thick hair, not so good for thin hair\",=Good=\nDryer? Styler?  Volumizer? Static Remover? Didn't work as any of those on my hair.,=Unsatisfactory=\n\"Expensive Luxury Soap with hyped claims, but a lovely product even so\",=VeryGood=\nHas a weird smell.,=Unsatisfactory=\nDosn't do what it says,=Good=\nNot impressed,=Unsatisfactory=\nDry lipstick,=Unsatisfactory=\nNo complaints,=Excellent=\nA dud in the line of Age Rewind.,=Unsatisfactory=\nNice product but not for cellulite,=Good=\nJust Okay,=Good=\nI got burned in less than an hour,=Poor=\nGreat scent.,=VeryGood=\nBun tool.,=Unsatisfactory=\nCarnival!,=Excellent=\n\"Good, but not for those with sensitive bellies\",=VeryGood=\n\"Very nice, but lack of seal is troublesome\",=Good=\nSuch a waste.,=Poor=\nBonnet is awkward,=Good=\nRecommended by Allure many times,=Excellent=\nBeware!,=Unsatisfactory=\nGreat for dry hands!,=Excellent=\nWorks well and isn't expensive,=Excellent=\nNot impressed,=Good=\n\"Not Good consistency, difficult To use\",=Poor=\ngood product,=VeryGood=\n\"Not for me, lashes seemed to fall out more frequently\",=Poor=\nnot the results I was hoping for,=Good=\nGreat!,=VeryGood=\nLiked the old version better...,=Unsatisfactory=\nGood moisturizer for those prone to break-outs,=Excellent=\nPretty Good,=VeryGood=\nNice and light,=VeryGood=\nNot a lot of shine and not a lot of hold,=VeryGood=\nFake NOT snooki they put coppertone or something else in here,=Poor=\nThis product didn't work for long,=Unsatisfactory=\nYummy.,=Excellent=\nReally like it,=VeryGood=\nNo better or worse than similar products,=Unsatisfactory=\nFlaky,=Unsatisfactory=\nEww!,=Poor=\nmessy as hell,=Unsatisfactory=\nWHAT A JOKE!!!!!!,=Poor=\nCuba Gold.,=VeryGood=\nThis has to much gray undertone for my coloring,=Poor=\njo jo from east baltimore,=Good=\nGood for practice,=Good=\n\"great item, easy product to use,  could havemore of more common sizes\",=VeryGood=\nSoothing,=Excellent=\nGreat but Bullky,=VeryGood=\nCan't do without this wonderful product!!!,=Excellent=\nNot for me,=Poor=\nLove Love Love.,=Excellent=\nGood for a starter or if you need lid brushes.,=Good=\nTemporary fix,=Good=\nnot for french tip,=Good=\nNot for me,=Unsatisfactory=\n\"good idea, bad execustion\",=Poor=\n\"Feels like hair hydrated, even a bit oily\",=VeryGood=\nGood.,=VeryGood=\nThis is terrible,=Poor=\n\"Earth Science Apricot Night Creme, 1.65 Ounce\",=Excellent=\n\"High Quality Brushes, always!\",=Excellent=\nFor The Price? Great,=VeryGood=\nReally cheesy,=Unsatisfactory=\nNot Even Close,=Poor=\nLight makeup with SPF,=VeryGood=\nI threw it away after the first use...OY!,=Poor=\n\"Works, but stinky..\",=VeryGood=\nGreat brush,=Excellent=\n\"Dark, easy to remove\",=Excellent=\nDidn't like it,=Poor=\nReputable company but product was a disaster for me,=Poor=\nNoticeable Difference,=VeryGood=\nGood moisturizing power...a lit goes a long way,=VeryGood=\nGreat adhesive except for the smell..,=VeryGood=\nDIDN'T WORK FOR ME,=Poor=\nShea moisture leave in,=VeryGood=\nReview,=Poor=\nExcellent soap,=Excellent=\nBig fan,=Excellent=\nI love this brush,=Excellent=\nworks great with olay in shower lotion,=Excellent=\nArrived very fast.,=Excellent=\n\"Crisp, clean retro soapy smell in a nicely lathering cream formula\",=VeryGood=\nVery thin and runny,=Good=\nThere is a cheaper and better option- Go prenatal instead,=Unsatisfactory=\nstinks,=Poor=\nevery woman would like this scent it seems like,=VeryGood=\n\"I would love this, but..\",=Good=\nLove this brush...I have bought several. Many uses and DURABLE!,=Excellent=\nStick with your MAC concealer.,=Unsatisfactory=\nOne Of The Worst Mascaras I've Ever Bought,=Poor=\nDid not deliver,=Poor=\nToo harsh,=Unsatisfactory=\nnot impressive,=Unsatisfactory=\nPros and cons,=Good=\nDidn't work... :(,=Poor=\nAudrey's Lips,=VeryGood=\nThey Pull Hair!!,=Unsatisfactory=\n\"Light, quickly absorbed\",=VeryGood=\nIts okay but...,=Good=\nTABLE MIRROR WITH MAGNIFICATION,=Excellent=\nOkay,=VeryGood=\n\"Great color, huge mess\",=VeryGood=\nI love it,=Excellent=\nPerfect for setting mineral foundation!,=Excellent=\ndo not purchase,=Poor=\n\"Tacky at first blush, but give it a chance!\",=VeryGood=\nBe diligent,=VeryGood=\nIt's ok,=Good=\nNot sure what all the fuss is about...,=Poor=\nRelatively Safer Approach to Skin Care,=VeryGood=\nBroken shadows,=Unsatisfactory=\nBUYER BEWARE: shipped the wrong size,=Poor=\nMediocre.,=Good=\nflawless look,=VeryGood=\ncant give an accurate review,=Good=\nEhhhhh,=Good=\n\"Smells great, non-irritating, and makes puppy very soft!\",=Excellent=\nWorks like a charm,=VeryGood=\n\"Good short term results, questionable long term results\",=Good=\nMixed reaction,=Good=\nHard to find,=Excellent=\nOne of my favorite scents for daytime/work,=Excellent=\nNice for summer and someone young,=VeryGood=\nGORGEOUS COLOR!!!,=Excellent=\nSurprisingly Disappointing,=Poor=\nJust right.,=Excellent=\nplastic junk,=Poor=\nSkin Irritant?,=Good=\nneutrogene oil free moisture sensitive skin,=Excellent=\nLike painting my nails with a knife,=Poor=\nAwful - You Get What You Pay For,=Poor=\nTangled my short virgin hair,=Poor=\nGreat!,=VeryGood=\n\"Average Product, Terrible Company\",=Poor=\nVery Rich and Smooth,=Excellent=\nWay Too Much Coconut,=VeryGood=\nNice,=VeryGood=\nThe Body Shop Nail Block,=Good=\nA Little Cumbersome ...,=Unsatisfactory=\nWorks well to conceal,=VeryGood=\nDangerous - you will burn yourself.,=Poor=\nGarnier Nutritioniste Deep Wrinkle Treatment,=Good=\nWorst product in the world,=Poor=\n\"Packaging is horrible, but product is worth it\",=Good=\nWARNING: SPARKS. DO NOT IGNORE.,=Poor=\ndo not like the fragrance of this product,=Unsatisfactory=\nNot sure I want to be in REHAB!,=Good=\nOribe Dry Texturizing Spray,=Unsatisfactory=\nWorked for me,=Excellent=\nIt just didnt work.,=Unsatisfactory=\nDoesn't work for me,=Poor=\nToo Small,=Good=\nfalse advertise,=Unsatisfactory=\nPretty good,=VeryGood=\nlong-wearing and excellent for sensitive skin,=VeryGood=\nWouldn't buy this,=Unsatisfactory=\nNot for me,=Unsatisfactory=\nNice cleanser,=VeryGood=\nBe prepared to enter smear city unless your color base is dry.,=Unsatisfactory=\nDecent Product!,=Unsatisfactory=\n\"Stings my skin, roller ball doesn't work well\",=Poor=\nDrys Out,=Unsatisfactory=\nToo Dry - and Overpriced,=Unsatisfactory=\n\"Works, but takes some time to get used to\",=Good=\nNot So Soothing...,=Good=\nWorks as Promised!,=Excellent=\nTERRIBLE product,=Poor=\n\"Earth Therapeutics Foot Therapy Moisturizing Foot Socks, 1 Pair (Pack of 2)...\",=Poor=\nNot as great as I needed,=Good=\nReally Good,=VeryGood=\nMy Favorite Mrs. Meyer's Scent Yet,=Excellent=\nLovely!,=Good=\nBEWARE OF THIS CHEAP CONDITIONER PASSING FOR SALON QUALITY,=Poor=\nBest Rinse,=Excellent=\nGinko Biloba?,=Poor=\nA gentle straightener,=VeryGood=\nWaste of money so far,=Unsatisfactory=\nBEST BRONZER!,=Excellent=\n\"It works, but watch your eyes\",=VeryGood=\nWorks well... not any better than the rest,=VeryGood=\nMy nails are worse,=Unsatisfactory=\ngood shampoo,=VeryGood=\nBought it on a whim - Love it!,=Excellent=\nOK product,=Good=\nDidn't work for me,=Poor=\nNo other toner will do now....,=Excellent=\nSuper softening but drying,=Unsatisfactory=\nFunky smell,=Good=\nbeware of color,=Unsatisfactory=\nits fake!,=Unsatisfactory=\n\"Natural flush, great on redheads! PENNY LANE\",=Excellent=\nBeware,=Poor=\ngreat lotion with a very unfortunate scent,=Good=\nmaybe its just me,=Unsatisfactory=\nI DONT LIKE IT.ITS A MISSTAKE ORDER.,=Unsatisfactory=\n\"Helped with Redness, but Wish SPF was Higher\",=Good=\nWrinkles?,=Excellent=\nNot one pass for me,=VeryGood=\n\"Good polish, but darker than expected\",=VeryGood=\nClean and natural,=VeryGood=\nrigid and poor quality,=Poor=\nBought this based on reviews and was disapointed,=Unsatisfactory=\nSave your money,=Poor=\ndoesnt work,=Unsatisfactory=\nToo subtle to notice,=Unsatisfactory=\nGreat Help for Aging Nails,=Excellent=\nnot sure,=Poor=\nNot worth it! I threw it away!,=Poor=\n\"Great smell, aweful results\",=Poor=\nDoes this product actually work?,=Good=\nDon't stop selling this product!,=Excellent=\nFavorite Scent For a Great Price,=Excellent=\nbummer for me,=Poor=\nCheap quality!,=Good=\n\"I like the texture, nothing else\",=Unsatisfactory=\n\"I used it, it is very good\",=VeryGood=\nLashgrip,=VeryGood=\nGlitter War Paint,=Unsatisfactory=\nOkay,=Good=\nLess Product Left on Hair Shaft - Silkier Smoother Natural,=Excellent=\nIt's a nail file but over the top in design.,=Excellent=\nGreat dryer at a great price.,=VeryGood=\nHated it,=Poor=\nVery Oily,=Unsatisfactory=\n\"Nice color, lasts longer than most\",=Excellent=\nNice Powder,=VeryGood=\nLove Redkin,=Excellent=\nproduct peels,=Unsatisfactory=\nNice way to store the cord.,=VeryGood=\nmehh,=Good=\nTame the wild beast!,=Excellent=\nIm obviously blind,=Poor=\nWhat can I say? I'm hooked!,=Excellent=\n1.5mm Micro Needle Roller Skin Care Therapy Dermatology System,=Poor=\nEhh ok...,=Good=\nI love this product for sensitive skin better than the clothes.,=Excellent=\nWorks well,=VeryGood=\nGreat Product but ...,=VeryGood=\nGoes on Nice but....,=Unsatisfactory=\nDecent product,=VeryGood=\nWATERED DOWN!!!,=Poor=\nGood!,=VeryGood=\nstupid,=Poor=\nI LOVE PHILOSOPHY!,=Excellent=\nSo beautiful,=VeryGood=\nI need my cleanser to clean,=Poor=\nI thought it would smell better,=Poor=\nit works,=Good=\nThe best all-natural Toner,=Excellent=\nThe strong fragrance really stings my eyes,=Unsatisfactory=\nOk it's a hairdryer and ..,=Unsatisfactory=\nIt was just as the reviews I got that made me purchase it in the first place,=VeryGood=\nlove it,=Excellent=\nCould be better,=Good=\nGood Moisture + Absorbs Quickly!,=VeryGood=\nAcrylic Jars,=VeryGood=\n\"Clumpy, dries out fast, brush bristles didn't even hold up.\",=Poor=\nIt works!,=VeryGood=\nNot sure..,=Good=\nRejuvenating,=VeryGood=\nlike it,=VeryGood=\n5 stars for conditioner & 1 star for Amazon shipping! FAIL :(,=Poor=\nNOT for people with sensitive skin &/or eyes!!!!,=Poor=\n\"One of my sons loves it, but it's too drying for the others\",=Good=\nSimple and pretty,=VeryGood=\nVery nice for the price,=VeryGood=\nFabulous!,=Excellent=\nTotal Flop,=Poor=\nKeep your receipt,=Poor=\nNot for the Uncoordinated,=Unsatisfactory=\nPleasantly surprised,=VeryGood=\ngreat purchase,=VeryGood=\nUM NOT,=VeryGood=\nvery runny and doesn't seem to clean all the make up and dirt off my face,=Unsatisfactory=\nbondini brush on glue,=Excellent=\nToo sticky,=Unsatisfactory=\nAnother let down,=Unsatisfactory=\nAwesome Product,=Excellent=\nChocolate Moose,=Excellent=\nMeh,=Unsatisfactory=\nI love your roses,=VeryGood=\nWorks Great!  Review with Updates!,=Excellent=\nA joke!,=Poor=\nI hate the pink one!,=Poor=\nPretty good with one drawback,=Good=\ngood product,=Good=\nMediocre,=Good=\n\"Fairly effective cleanser, but not a miracle\",=Good=\nBad scent,=Poor=\nSmells like Fuel,=Unsatisfactory=\nworks,=Excellent=\nThis stamper doesnt work!,=Poor=\nYuch!,=Poor=\nNot actual product,=Poor=\nday one: notes from a peeled chicken,=Good=\nsqueeky clean,=Excellent=\nWasn't what I expected...,=Unsatisfactory=\nGreat stuff!,=Excellent=\n\"If you really really love tea tree, this is the stuff!\",=VeryGood=\nTantalizing Scent,=VeryGood=\nDoes not smell like Amor Amor by Cacharel,=Poor=\nShedding...,=Unsatisfactory=\nEven tone,=VeryGood=\nThe very best tool for ripping your hair out at the root,=Unsatisfactory=\nIt made no difference in my hair,=Unsatisfactory=\nNot bad...,=VeryGood=\nNot what I expected,=Poor=\nThe best,=Excellent=\nGreat (but not for long),=Poor=\nReally works!,=Excellent=\nNot seeing any results,=Good=\n\"Gentle, Well Working\",=Excellent=\nFive Stars,=Excellent=\nSmall - Received all 4-pcs. UGLY EMERALD GREEN!,=Poor=\nDidn't see anything different,=Unsatisfactory=\nI don't like it,=Unsatisfactory=\nHate it,=Poor=\nCheap CHI,=VeryGood=\nDon't waste your money,=Poor=\nNot Natural,=Good=\n\"Bought these for my wife, and she was absolutely pleased with them! Beware of other brands from what I've read\",=Excellent=\nLiked at first; over time it didn't work out...,=Unsatisfactory=\n\"Good for skin massage, not so good at removing blackheads\",=Good=\n\"contains protein, so try with caution; hair may become dry\",=Unsatisfactory=\nPale,=Unsatisfactory=\nAsi Asi...,=Good=\nDoesn't Irritate But Doesn't Do A Good Job Either,=Unsatisfactory=\nBest skin care product I've ever found,=Excellent=\nStrong scent even from inside the box,=Poor=\n\"OMG, WRONG!!!\",=Poor=\nDidn't work for me,=Poor=\nLemon Verbena Comfort,=VeryGood=\nUse it every day,=VeryGood=\nits like water,=Poor=\nNot that great.,=Unsatisfactory=\nGreat price,=Excellent=\nPhilosophy coconut,=Excellent=\nVery thin & small,=Good=\nLove this stuff!!!,=Excellent=\nNailtiques Nail Protein Formula 2,=Excellent=\nEffective and versatile!,=Excellent=\nQuestioning authenticity,=Unsatisfactory=\nWould Not Recommend,=Poor=\nDid not work for me,=Unsatisfactory=\nI don't notice a difference when using this,=Unsatisfactory=\nGood But Chips.,=VeryGood=\nDaily Moisturizer,=Unsatisfactory=\nLove it!!!!,=Excellent=\nNo Scent,=Unsatisfactory=\nAn adult cure that works,=Excellent=\nNot for me......,=Unsatisfactory=\nSharp teeth.,=Good=\nVery disappointed,=Unsatisfactory=\nNot as soft as I would like,=Good=\nEasy to Use but No Staying Power,=Good=\nInstant tan,=VeryGood=\nIt's OK,=Good=\nClogged My Pores,=Poor=\nBEWARE- NOT FOR ACNE PRONE SKIN,=Poor=\nNot as effective as I'd remembered,=Unsatisfactory=\nThin and messy!,=Unsatisfactory=\ngood price,=Good=\nVery satisfied with my purchase,=Excellent=\n\"No Real Difference, Except Greasy\",=Unsatisfactory=\nvery oily and burns face,=Unsatisfactory=\nIt's okay,=Good=\nSmoothing milk ok,=Good=\nExcellent for hair regrowth!,=Excellent=\nStill wondering,=Good=\nTakes too long to heat up,=Good=\nBronzing powder,=Poor=\n\"smells nice, and can be stretched\",=VeryGood=\nNot so special,=Good=\nGreat moisturizer but once rinsed out hair feels rough,=Unsatisfactory=\nGreat Brush,=VeryGood=\neh doesnt make my nails stonger at all,=Poor=\nPlease read ingredients!,=Poor=\n\"Not absorbant, not good for long hair\",=Poor=\n\"Q-Tips, you've changed...\",=Poor=\nI won't waste my money on this line anymore.,=Good=\n\"If I wanted to have acne, why would I pay for it?\",=Poor=\nCame broken in the mail,=Unsatisfactory=\ntoo oily,=Unsatisfactory=\nVery Soft Hair,=VeryGood=\nNot for natural hair,=Poor=\nIt's okay,=Good=\nYUMMY!,=Excellent=\nPerfect for a night out,=VeryGood=\nGREAT!,=Excellent=\n\"Glasses wearers, pro tip\",=VeryGood=\nGreat for afro/mixed textured hair!,=Excellent=\nShow Me The Ring...,=Good=\n\"Does what it says, but smells horrible\",=Good=\nI wish it wasn't so shiny,=Good=\nI See Some Change!!,=VeryGood=\nBought to regrow my eyebrows,=Good=\nExcellent toner!,=Excellent=\n\"Good Facial Cleanser, Doesn't Help with Acne\",=Good=\nGreat probiotic for improved digestion health,=VeryGood=\nWorks!,=Excellent=\nhate it!,=Poor=\nAlmost a good lotion for men,=Good=\nQuite a nice comb,=VeryGood=\nIt did nothing!,=Unsatisfactory=\nfeels really good and i like the smell,=VeryGood=\nToo cheap!,=Poor=\nI did not use this product at all,=Poor=\ndidnt like,=Unsatisfactory=\nLame,=Unsatisfactory=\nGood product,=VeryGood=\nRefreshes the curls!,=Good=\nIt's ok - nothing spectacular,=Good=\nExpensive - Smell Too Strong - Better Products Available,=Unsatisfactory=\nIT IS OK,=Good=\nLong Lasting,=VeryGood=\nwouldn't buy again,=Unsatisfactory=\nSkin is softer,=VeryGood=\nBest Product for Dry Sensitive Lips,=Excellent=\nit does not work well with others,=Unsatisfactory=\nNOT FOR LIGHT AND DRY SKIN,=Poor=\nif you must get a face scrub go with the st ives fresh skin,=Unsatisfactory=\nGood for the price,=Good=\nI've seen better,=Unsatisfactory=\nNot so good product,=Unsatisfactory=\n\"Solid Performer, Color-Safe Shampoo\",=VeryGood=\nSmelly,=Unsatisfactory=\nNot long enough,=Poor=\nEffective products,=Excellent=\nOne word- Cheap,=Unsatisfactory=\nVery satified,=Excellent=\nPretty  good!!,=VeryGood=\nNO,=Unsatisfactory=\nOkay,=Unsatisfactory=\nso THAT'S why the bottle's so big,=Good=\nactually decided to mix this item with something else..,=Good=\neh..it's alright,=Good=\nDoesn't work for me,=Unsatisfactory=\nDoesn't work,=Poor=\nSmooth Slick Lips,=Good=\nDO NOT BUY from this vendor,=Poor=\nGood product but not blown away,=Good=\nOver priced and not work the money,=Unsatisfactory=\nIt is okay,=Good=\nGentle &amp; Long Lasting,=VeryGood=\nLove this color!,=Excellent=\n\"Expensive, but worth it\",=VeryGood=\nLeast Favorite,=Good=\nGood value,=Excellent=\nCan't tell if it does anything,=Unsatisfactory=\nLove It!,=Excellent=\nRegular overpriced oil,=Unsatisfactory=\nSo good so far,=Unsatisfactory=\nJust the right color,=Excellent=\nNot for the face,=VeryGood=\nBetter Than Advertised!,=Excellent=\nyuck,=Poor=\nI love all philosophy products,=Excellent=\n\"It's OK, but I think Yes To Carrots brand is better\",=Good=\nMoney Saver,=VeryGood=\nBest face wash for dry skin,=Excellent=\nFragranty,=Good=\nNeutrogena Wave not as great as I thought it'd be....,=Good=\nSmells great and feels great,=Excellent=\nTea Tree oil promotes healthy skin and is a natural healer,=Excellent=\nNo not daily face wash,=Poor=\nHairspray,=Excellent=\nDID NOTHING FOR ME!,=Poor=\n\"Hair Clips...Nothing more, nothing less.\",=VeryGood=\nToo HEAVY,=Unsatisfactory=\nNot long lasting,=Unsatisfactory=\n\"Love Soap, just not Almond\",=Good=\nno so shining,=Poor=\n\"Great initially, but will damage your hair with long term use\",=Poor=\n\"lotion, not a bronzer\",=Unsatisfactory=\nThe best!,=Excellent=\nNo results,=Unsatisfactory=\nI wouldn't buy it,=Unsatisfactory=\n\"'Undetectable Coverage\\?!\"\"\",=Poor=\nThree Stars,=Good=\nOk,=Good=\nWorks.,=VeryGood=\nProbably wont order again,=Good=\nIt works!  But heavy on fragrance.,=Excellent=\nOnly the first layer works some how,=Poor=\nSkin looks great,=Excellent=\nTough & Fast Drying,=VeryGood=\nDidn't work for me,=Poor=\nIt's okay : (  updated review 10/15/2010,=Unsatisfactory=\nA Mini Spa Treatment at Home,=VeryGood=\nNice one!,=VeryGood=\nDon't work?,=Poor=\nGood,=VeryGood=\nOne of the best conditioners for African-American/relaxed hair,=Excellent=\nA wonderful hydrating and brightening facial serum at the right price!,=Excellent=\nNOT Natural looking!,=Unsatisfactory=\n\"It's nothing amazing, but it does smell very good! Makes a nice cuticle balm.\",=Good=\nSmelly,=Poor=\nGreat while it lasted,=Unsatisfactory=\nIt's alright,=Good=\n\"Skin is soft, but acne & scars are untouched\",=Good=\nWonderful!,=Excellent=\nSuch a cutie,=Excellent=\nMy hair did not curl.,=Good=\nPerfect to prevent ingrown toe nails,=Excellent=\nabsolutely not,=Unsatisfactory=\nWHAT. THE. HELL.,=Poor=\nGreat,=Excellent=\nGood flexible hold,=Good=\nso so,=Good=\nBeware of perfume,=Poor=\nI gave it a fair shot which is more than it did for me.,=Poor=\n\"dont even try to shapen it, its a pain ...\",=Unsatisfactory=\nDon't waste your money!,=Unsatisfactory=\n\"Wish I didnt have to wear it, but hey\",=VeryGood=\nNice Shine,=VeryGood=\nMeh.,=Unsatisfactory=\nAn OK spot treatment.,=Good=\ndon't waste your money on this crap,=Unsatisfactory=\ngood product,=VeryGood=\nWorks well but wrong color.,=Good=\nA Very Good Wipe!,=VeryGood=\ndid not do too much damage,=VeryGood=\nnot as pictured.,=Good=\nOk,=Good=\n\"Zinc + More, Much More...\",=Poor=\nawful,=Unsatisfactory=\n\"Not Impressed, I'll stick with my Xen Tan\",=Unsatisfactory=\nBeware,=Poor=\nJust doesn't really deliver on it's promise.,=Good=\nMakes hair soft,=VeryGood=\nMeh,=Unsatisfactory=\n\"Good coverage, but made me break out\",=Good=\nI threw them all out,=Poor=\nMeh,=Good=\nDecent shower tool,=Good=\nDoesn't Last,=Poor=\nDeceiving color,=Unsatisfactory=\nA little too light,=Good=\nVery disappointing,=Poor=\nDelightful Smell,=VeryGood=\nYou get what you pay for.,=Poor=\nnice for this price,=VeryGood=\nThis is the best product on the market !,=Excellent=\nGreat stuff for soft skin,=VeryGood=\nFavorite Camille Beckman scent,=Excellent=\n\"Very durable, and holds a ton!\",=VeryGood=\nVery plastic-y,=Unsatisfactory=\nSeems ok but price is high,=Unsatisfactory=\ndoes not work!,=Unsatisfactory=\nWow I love this stuff!,=Excellent=\nwont cover grey and it fades fast,=Poor=\nNot For Very Sensitive Skin,=Unsatisfactory=\n\"I love the product, but my skin hates it\",=Good=\nI Like Aphogee 2 Min Reconstructor! Four Stars,=VeryGood=\nGreat Buy!,=Excellent=\nTerrible for women and children. Ingredients may cause breast cancer.,=Poor=\n\"So classy, so sublte, so elegant\",=Excellent=\n\"i'm just sayin, you can do better\",=Poor=\nLove them all!,=VeryGood=\nGreat scent. Horrible longevity and silage. Oh...and fake.,=Good=\nGave Me A Rash!,=Poor=\nGood one,=VeryGood=\n\"Wrong shape for flopping, can't tie your hair in it\",=Poor=\nGreat oil,=Excellent=\nNot Great,=Unsatisfactory=\nBetter than q-tips,=Excellent=\nCleans my oily skin,=VeryGood=\nDon't judge the product!,=Unsatisfactory=\nAnother Great Nivea Product,=VeryGood=\nNot a good result at all,=Poor=\nNot Good At All,=Poor=\nGood shampoo,=VeryGood=\nDidnt really see a difference,=Unsatisfactory=\nGreat for Fatheads like Me,=Excellent=\na must buy,=Excellent=\nA lie. These aren't even dual form nails. Nail glue advertised on back was taken out and the tin taped back together. Horrible.,=Poor=\nno improvement,=Poor=\nDr. Bonners Mild Baby Organic Soap,=VeryGood=\nHave used this for many years -It Works,=Excellent=\nHardly saw a difference,=Unsatisfactory=\n\"Smelled good, not enough bubble for me\",=VeryGood=\nlove this! better than BHA only gels,=Excellent=\nThis thing works!,=VeryGood=\nTotally worth it,=Excellent=\n\"Decent, but hurts my fingers\",=VeryGood=\nNot for my hair,=Poor=\nDoesnt work.:(,=Unsatisfactory=\nBreak too easy,=Unsatisfactory=\nNO LIGHTENING EVEN AFTER A MONTH,=Unsatisfactory=\nEarthy Neutral Smell,=VeryGood=\nOne Star,=Poor=\nDisapointed,=Poor=\n4 oz is small compared to my other bottles,=Good=\nFlat Iron Works Better,=Poor=\n\"Really, no headache\",=VeryGood=\nOther Ever--- products are much better,=Poor=\nShould have paid closer attention to other reviews...,=Good=\nConvenient for travel and your purse,=Good=\nOkay,=Good=\nHair Breakage!,=Poor=\nGross,=Unsatisfactory=\nHasn't made a big difference in my skin,=VeryGood=\nNot completely sold on this one.,=Good=\nNice Headbands,=Excellent=\nPubic horror,=Poor=\nRose Toner,=Excellent=\nGreat Cleanser (Review from a man),=Excellent=\nGreat,=Excellent=\nFeels Nice!,=Excellent=\nLeaves Skin Soft,=VeryGood=\nDid nothing,=Unsatisfactory=\nGood Stuff,=Excellent=\nIt's okay,=Good=\nT-gel extra strength,=Excellent=\n\"not moisturizing, hard to remove makeup\",=Unsatisfactory=\nI feel cheated,=Unsatisfactory=\ntoo big,=Good=\nI am hooked,=Excellent=\n\"It's ok but for true salon quality \\blow out,\\\"\" the John Frieda brush is better...\"\"\",=Unsatisfactory=\nHelps with break outs and makes skin super soft.,=Excellent=\nPretty peachy-pink,=Excellent=\nGreat Product!!!!,=VeryGood=\nUse when something more hearty is needed,=Good=\nBeware...,=Poor=\nToo soon to decide,=Good=\nNot the correct shade,=Poor=\nGentle cleanser does not remove makeup,=Good=\nThis is not Jamaican Black Castor Oil,=Poor=\nMeh. I see no difference.,=Unsatisfactory=\nwife ordered this,=Good=\nGood stuff,=VeryGood=\n\"Adequate, but not quite up to the advertising hype\",=Unsatisfactory=\n\"Arrive fast, nice bottle and package, but smells horrible\",=Unsatisfactory=\nSo disappointed - not for really dry skin,=Unsatisfactory=\nNot so great,=Unsatisfactory=\nNice product. I would prefer a bit more scrub,=VeryGood=\n\"Smooths down, literally.\",=Excellent=\n\"an ok, i'd say\",=VeryGood=\nyes cucumber color care,=Poor=\nLOOKS OLD,=Poor=\nIt's okay,=VeryGood=\nBare Escentuals - the Best in Mineral Makeup,=Excellent=\nLovely but not on me!,=VeryGood=\nHelps with sleeping.,=Excellent=\n\"beautiful, natural looking lashes\",=Excellent=\nLacking Body Wash (D Grade),=Poor=\n\"Summer/Day Time, All Around Fragrance of Choice\",=VeryGood=\nNot So Mild...,=Good=\n\"A GLAM, FLATTERING BLUSH\",=VeryGood=\nIt's ok,=Unsatisfactory=\nterrible waste of  money,=Poor=\nCouldn't use,=Poor=\n\"Cheap, small and convenient\",=Good=\nGood conditioner...yet cubersome packaging,=VeryGood=\n\"Nice, but I've had better...\",=VeryGood=\n\"Love the smell, but it doesn't last!\",=Good=\nDevelop a Smell!!!,=Good=\nnot worth it.,=Unsatisfactory=\nDon't wast your money,=Poor=\nPretty good,=VeryGood=\n\"Spornette Porcupine Rounder Brush, 2-Inch\",=Excellent=\n\"either leaves hair greasy, or does not do anything\",=Unsatisfactory=\nDidn't work for me,=Unsatisfactory=\nThis works,=Excellent=\nI am unhappy with this product,=Unsatisfactory=\nNo Propyl Glycol!  Finally!,=VeryGood=\nMizani rose h20,=Good=\nNice,=Excellent=\nFavorite soap,=Excellent=\nAbsurd!,=Poor=\nNot great,=Poor=\nflaked my scalp,=Poor=\nGood deep conditioner for Afro-textured hair!,=Excellent=\n\"Not A Tremendous Amount of Power, But Good For Final Curl.\",=Good=\nWhole Philosophy Line Disappointing ; (,=Good=\npackaging issue,=Good=\ngloves are way too big,=Poor=\nBlahh...,=Unsatisfactory=\n\"Clogs pores, lightens redness...pick your battle\",=Good=\nSmears,=Good=\nGood enough,=Good=\nnew favorite,=Excellent=\nNot as advertised!,=Poor=\ncoco me,=Excellent=\nGood product,=VeryGood=\nDemure Vixen...,=Excellent=\nVery Pleased,=VeryGood=\nNot such a pleasant smell,=Unsatisfactory=\nDisappointing,=Poor=\n\"Good straightener, but died so fast\",=Poor=\nNot for me,=Unsatisfactory=\nIt works great for me.,=Excellent=\n\"Ok for summer, but maybe not for winter\",=Good=\nIBD Bonder not what I thought,=Poor=\nTypical Creamy Value Facewash,=Good=\n\"Very light smell, not a lot of bubbles\",=Good=\n\"Nice, but doesn't smell like lavender or jasmine at all\",=VeryGood=\nTalk about GREASY hair,=Unsatisfactory=\nSmells like plastic or something!,=Poor=\nNot for me,=Good=\nReally helps,=Excellent=\njust say no,=Poor=\nNot for me,=Poor=\ngreat product and great price,=Excellent=\nDidn't see a change,=Unsatisfactory=\nTakes practice,=VeryGood=\n\"Great stuff! Keep it away from the dog, though\",=Excellent=\nNot good,=Unsatisfactory=\nHate it,=Poor=\nLove this mask,=Excellent=\nInvisible on Your Lashes,=Poor=\nGave me a rash,=Unsatisfactory=\nOK if you don't wear glasses,=Unsatisfactory=\nNot a pleasing product (D Grade),=Poor=\nNot as great as expected,=Good=\nHoly Black Opium Batman!,=Unsatisfactory=\nPoor quality shadow (Morocco),=Poor=\nNot as tan as i thought,=Unsatisfactory=\ngood idea but not a great product,=Unsatisfactory=\nNot like the older orly,=Unsatisfactory=\nI really wish I read the bad reviews before buying this...,=Unsatisfactory=\nMy Very Favorite Conditioner for CO Cleansing,=Excellent=\nits ok,=Good=\nDid not work well with my body chemistry,=Unsatisfactory=\n\"Moisturizing, doesn't last very long\",=Good=\nMakes you look dirty...,=Poor=\nMaybelline NY Dream Matte Mousee Foundation,=Unsatisfactory=\nLeaves your skin dirty with white flakes,=Unsatisfactory=\nSaw no results whatsoever,=Poor=\nNice natural toner! refreshing!,=Excellent=\nEasy to Clean But Not to Use,=Good=\nAlternative brush application works more effectively,=Poor=\nNot for the weak-kneed!,=VeryGood=\nGrow grow grow!,=VeryGood=\nGreat,=Excellent=\ngood product,=VeryGood=\nskip the cherry blossom conditioner,=Unsatisfactory=\n\"Nice, but closer to a dark nude.\",=VeryGood=\nA Gentle Sunscreen,=VeryGood=\nOk,=Good=\nSmooth and silky body wash,=Excellent=\nA good moisturizer,=VeryGood=\nnice,=VeryGood=\n\"Good cream, bad smell\",=VeryGood=\nI love it!,=Excellent=\nIt's usable for travel purpose,=Good=\nNope not this one,=Poor=\nSmells a bit like motor oil,=VeryGood=\n\"Irritating, cheap smell\",=Poor=\nDecent,=Good=\nStrong and worth the price!,=VeryGood=\nWhat do I do wrong?,=Unsatisfactory=\nDoesn't live up to the hype,=Unsatisfactory=\nIts a good product,=Good=\nNice smell,=Excellent=\nvery good hot air brush. it's easy to use and make your hair shiny and strength too,=VeryGood=\nVery Interesting Product....,=VeryGood=\nThey do the job,=Unsatisfactory=\nNot For People with Make-Up/Chemical Sensitivities,=Poor=\nThis cleanser does the job,=VeryGood=\nPretty in Purple,=VeryGood=\nLeaves the hair dry,=Poor=\nInconvenient to use without handle,=Poor=\nIt's okay.,=Good=\nHmmmm.,=Good=\nStill testing the effect..,=Good=\nnot good as it used to be,=VeryGood=\nA Great Non-Clumping Mascara,=Excellent=\nWill stick with Deep Dove Moisture,=Good=\nResults Noticeable Within DAYS,=Excellent=\n\"Great conditioning, not as moisturizing as I was hoping for\",=VeryGood=\nThis works for me,=Excellent=\nIt Works!,=Excellent=\nEasy to Use,=Good=\nDidn't work for me,=Unsatisfactory=\nCleopatra Could Have Used This Sealer!,=VeryGood=\nGreat back scrubber,=VeryGood=\n\"The Obagi system caused me to break out in deep, painful overlapping pimples\",=Unsatisfactory=\nEnded giving it away...,=Unsatisfactory=\nWhere have you been all my life?,=Excellent=\nSent me the new Soy formula - not the Marine Collagen formula,=Poor=\n\"Strong smell, burns eyes\",=Unsatisfactory=\ngave it a whirl,=Unsatisfactory=\nWorks great,=VeryGood=\nNo More Tangles and Plenty of Shine,=VeryGood=\nwife ordered this.,=Unsatisfactory=\nSeems to work.,=VeryGood=\nI believe in exfolliation,=VeryGood=\nAwesome product!,=Excellent=\nThe shampoo of my dreams,=Excellent=\nvery dissatisfied with loreal paris infallible never fail lipcolour,=Poor=\nbad for fragile skiin,=Poor=\nVery good!,=Excellent=\nA bit flimsy,=Good=\nLike this product,=VeryGood=\nIt washes off :/,=Good=\ncheap but efficient,=VeryGood=\nHate this stuff!!,=Poor=\nAre you kidding me???,=Poor=\nIt Happens.,=Poor=\n\"It seems to work, but it's oil in a bottle\",=Good=\n\"Good, but not really for every day\",=VeryGood=\nToo thick and bulky,=VeryGood=\nOne Star,=Poor=\nIrregular pricing.,=Excellent=\nYuck!,=Poor=\nQuite happy but...,=VeryGood=\nNaturally nice,=VeryGood=\nI developed an eye condition after using this!! Don't use!!,=Poor=\nok-takes a lot of practice,=Good=\nLovely lotion but barely the original scent,=VeryGood=\nDefinitely not ouchless as I thought they were!,=Good=\n\"Good stuff, but I paid too much for it\",=Excellent=\nMy head is too big!,=Good=\nPricey but good,=Excellent=\nHonestly?,=Unsatisfactory=\nPEE Yoou!,=Poor=\nNo help for puffiness.,=Unsatisfactory=\nNot sure if I love it,=Good=\nNot Recommended,=Unsatisfactory=\nPainful after a few months,=Good=\nLove this daycream,=Excellent=\nroom for improvement,=Good=\nPlay Date 783,=Excellent=\nGreat night cream,=VeryGood=\nSimply the worst,=Poor=\nNO AT ALL..,=Poor=\ncould be good with the right stuff,=Good=\nDid nothing,=Poor=\npretty good stuff,=VeryGood=\nEmergency Skin Care,=VeryGood=\nBig no,=Unsatisfactory=\nStripper Purfume,=Poor=\nTerrible! Switching Back to Previous Moisturizer!!!,=Poor=\nHas left hair manageable... pleasant but not overpowering fragrance...,=VeryGood=\ndid not work for me,=Poor=\nJunk in a bottle,=Poor=\nBest hair filler of all,=Excellent=\nA poor imitation!!,=Unsatisfactory=\nDon't bother,=Unsatisfactory=\nummm.  this mirror actually DOES FOG,=Unsatisfactory=\nJust Ok,=Unsatisfactory=\nnot so great nars..,=Poor=\nNo so Good for Me,=Unsatisfactory=\nGreat concept - needs improvement,=Unsatisfactory=\n\"Hard to Grip, but Good Stuff\",=VeryGood=\nI like it,=VeryGood=\nThick and Paste-Like,=Good=\nSpot Treatment? Great. All Over? Not So Much.,=Unsatisfactory=\nThe best Long Lasting moisturizer! With natural ingredients. It lasts and lasts,=Excellent=\nI like it,=VeryGood=\nSmells weird.,=Poor=\nGreat!,=VeryGood=\nNo miracle skin treatment but it is softer now.,=Good=\nOnly 10% AHA/Glycolic Compound,=VeryGood=\nnot for me,=Poor=\nI wish I could give this 0 stars,=Poor=\nNot what it was - Check the names to be sure what you're getting,=Unsatisfactory=\nmy favorite,=Excellent=\nSTICKY!,=Poor=\nVery good for everyday use too,=VeryGood=\nclay,=VeryGood=\nNOT AS GOOD AS I EXPECTED,=Good=\nHydrates well but little greasy for me,=VeryGood=\nWorks good,=VeryGood=\nA good smooth soap,=Excellent=\nNice face wash,=VeryGood=\nMade skin feel tight and dry,=Good=\nGreat shampoo,=Excellent=\nDOES THE JOB...,=Excellent=\nMake it unscented,=Good=\nsmell good,=Unsatisfactory=\nugh-- i don't know why this has such good reviews,=Unsatisfactory=\nJust OK but it works in a pinch,=Good=\nJust meh,=Good=\nDoesn't Heat Up to What It Claims,=Unsatisfactory=\nStraw hair!,=Poor=\n\"Great for cracked, dry skin\",=VeryGood=\n\"If you part your hair, fine for that.\",=Good=\nToo harsh for my sensitive skin,=Unsatisfactory=\n\"Reviva Labs Elastin & DMAE Night Cream, 1.5 Ounce\",=VeryGood=\nDid absolutely nothing for me!,=Poor=\nMight work for you,=Good=\nNalo Top Pick,=Excellent=\nnot worth it,=Poor=\nNot for Ethnic hair - For thick and natural-No!,=Poor=\nHuge disappointment...,=Poor=\nnothing help,=Poor=\nCan't find these anywhere,=Excellent=\nNope,=Poor=\nA must for swimmers,=VeryGood=\nNow I know why it's discontinued!,=Unsatisfactory=\nProducto no recomendable NADA PR&Aacute;CTICO,=Poor=\nnot good,=Unsatisfactory=\nMade Me Breakout,=Poor=\nIf your trying to switch to more natural skincare don't buy this!,=Poor=\nSkin tanning product with a burn,=Unsatisfactory=\n\"Not extraordinary, just good\",=Good=\nYou get what you pay for!,=Good=\nno thanks!,=Poor=\nHaven't seen Results,=Unsatisfactory=\nLoss of money!,=Poor=\nGreat oil with a strong taste.....,=Excellent=\nGood quality product,=VeryGood=\nSeems to work well,=VeryGood=\nshimmer everywhere.,=Good=\nNot very nice,=Unsatisfactory=\nOk,=Good=\nfair,=Good=\n\"Great product, wish it was made in USA though...\",=VeryGood=\nWasn't my color,=Good=\nBubble Bath: perfect pink/nude color,=VeryGood=\nJust like Nivea Visage Q10 without fragrence or Creatine,=VeryGood=\nNautica Cologne,=Good=\ncheck pricing,=Good=\nLoooove,=Excellent=\nits ok,=Good=\nNot Good for Thin Hair,=Poor=\nDecent Cleanser,=Good=\nDidn't work,=Good=\nGood but burns your eyes!,=Unsatisfactory=\nLooking for something I didn' found...!,=Unsatisfactory=\nDoesn't work.  Only acts as a moisturizer.,=Unsatisfactory=\nOverrated prodcut,=Unsatisfactory=\nMeh - Nothing Special,=Unsatisfactory=\nit is good but not the best,=Good=\nI would call this tangler not detangler!!,=Unsatisfactory=\nReally hate this product,=Poor=\nDid NOT irritate my sensitve skin.,=VeryGood=\nanti-static?,=Unsatisfactory=\nToo  Strong,=Poor=\nBleh,=Poor=\nGreat bang for the buck!,=Excellent=\nI bought it after seeing the reviews and decided to ...,=Poor=\n... what I would expect Hollister Newport Beach to smell like if it were adapted as a cologne,=VeryGood=\n\"Great detangler, not sure about long term hair repair\",=Good=\nEhhhhh,=Unsatisfactory=\n\"Great moisturizer, terrible smell\",=VeryGood=\nAre you kidding me!!!!!!,=Excellent=\nGunky and smelly,=Good=\nFor everyday,=VeryGood=\nGood even for fair skin,=VeryGood=\n\"Drying even on hands, RASH on FACE And NECK\",=Poor=\nHonestly...,=Unsatisfactory=\nPerfect,=Excellent=\nOK kit; not really like Proactiv,=Good=\nNot as expected,=Unsatisfactory=\nDisappointed with Usage and Dosage,=Unsatisfactory=\nProduct works.,=VeryGood=\nNot sure if it's needed,=Good=\nFalling  apart brushes,=Poor=\nokay,=Unsatisfactory=\nPore Vacuum,=Excellent=\nBig waste of money..,=Unsatisfactory=\nthis one i wear more than my number one pick,=Excellent=\nI wanted to like this,=Poor=\nDidn't do much but made hair look like straw,=Poor=\nGreat Brow Brush!,=VeryGood=\nWorks without breakouts,=Excellent=\nNot saturated enough,=Unsatisfactory=\nNo Suds,=Unsatisfactory=\nTakes a few colorings,=VeryGood=\ngreat finish powder!,=VeryGood=\nMakes my skin lovely and smooth,=Excellent=\nNo Thanks,=Poor=\nI don't like scented things,=Good=\nNo thanks,=Unsatisfactory=\nTHE BEST ROLLERS EVER INVENTED,=Excellent=\nWorst mascara I've tried in a long time...,=Poor=\nNot impressed,=Unsatisfactory=\nGreat witch hazel,=Good=\nYou really burn through this soap FAST,=Poor=\n\"Is It Really \\Just Me\\\"\"?\"\"\",=Good=\nProfessional Grade Hairdryer,=VeryGood=\nCompact but not enough power,=Unsatisfactory=\nNice!,=VeryGood=\nsame as always,=Good=\nOlay Total Effects Anti-Aging Night Firming Treatment,=Excellent=\nIrritating,=Poor=\nNot for thick hair,=Unsatisfactory=\nGood product,=VeryGood=\nNothing Special,=Unsatisfactory=\nSo Hot!!!,=Excellent=\nToo frosty,=Good=\nits OK,=Good=\nWorst nail polish ever!,=Poor=\nFor me drying,=Unsatisfactory=\nGave me a tinted rash,=Unsatisfactory=\nAlba Botanica,=Good=\nDove Body Wash w/ NutriumMoisture,=VeryGood=\nSmells nice,=Good=\nA gentle but strong-smelling exfoliator,=Good=\nNothing special,=Unsatisfactory=\n\"Helped Nails, Not Hair, and Maybe Caused Hair Loss?\",=Unsatisfactory=\nGood Product,=VeryGood=\nOne of my favorite things,=Excellent=\nThe taste of vitamins and grape!!!! ...Awful,=Unsatisfactory=\nBorrowed and Blue: All the ladies love my fingers!,=Excellent=\nDoes what it says it'll do,=VeryGood=\nWanted to Love this Eye Repair .....,=Unsatisfactory=\nGreat smell and not itchy afterwards,=VeryGood=\nCan you say Oompa-Loompa,=Poor=\nDidn't do it for me,=Poor=\n\"LIGHT brown? Maybe later, but not at first!\",=Good=\nwouldn't buy again,=Unsatisfactory=\ngreat product,=VeryGood=\nExcelente,=Excellent=\nThis is nothing special,=Unsatisfactory=\nunless...,=Unsatisfactory=\nDon't buy in summer,=Poor=\nI dont see any improvement?,=Unsatisfactory=\nNot impressed.,=Unsatisfactory=\nLight brown? Not quite,=Unsatisfactory=\nBOUGHT THIS FOR MY MOM,=Excellent=\nSmall,=Poor=\nFirst sponge I have used.,=Excellent=\n\"Berry, raspberry\",=Excellent=\nWon't buy again.,=Poor=\nspin off of Benefit,=Good=\ni like this,=VeryGood=\nOLD!!,=Poor=\nHate the tube.,=Good=\nExcellent product & ingredients!,=Excellent=\nI like it,=Good=\nThought the taco shell would be stiffer.,=Good=\nNot so great for thick hair,=Good=\nSadly not the same . .,=Poor=\nBuy yoghurt instead,=Poor=\nLove the smell.,=Excellent=\n\"Skin, hair = multi-purpose!\",=Excellent=\n\"It's a tan concealer, and you'll need to use your hand\",=Unsatisfactory=\n\"Dark color, doesn't last\",=VeryGood=\nA very different experience,=VeryGood=\nWorks great but has parabens,=Good=\nVery disappointed,=Unsatisfactory=\nDoesn't clean as well as regular soap.,=Unsatisfactory=\ncan't stand the smell,=Unsatisfactory=\nlather baby!!,=VeryGood=\nNot a fan,=Unsatisfactory=\nexcellent!!!,=Excellent=\nflimsy,=Poor=\nI'm not sure,=Good=\nRadiance Serum,=Poor=\nit's not long lasting at all,=Unsatisfactory=\nIssues with Ingredients,=Unsatisfactory=\nDried Out,=Unsatisfactory=\nI like allot,=Good=\nOk product,=Good=\nLove it!,=Excellent=\nGreat Stuff,=VeryGood=\nNot hot enough,=Unsatisfactory=\nNot the same product in store,=Poor=\ntoo dry for skin,=Poor=\nNot as good as the red one!,=Good=\nDo Not Purchase This Product - Not an Exfoliator,=Poor=\nGreasy,=Unsatisfactory=\nNot recommended..,=Good=\nExecellent Deodorant,=VeryGood=\nNot thrilled with this glitter!,=Unsatisfactory=\nBiotin,=VeryGood=\nBrown skin,=VeryGood=\n\"The proof? my dirty sponges become SNOW WHITE. not 80% clean, but 100% clean\",=VeryGood=\nSuch a disappointed.,=Poor=\nTOO LIGHT,=Good=\nQuality Facial Lotion,=VeryGood=\nWork's Well,=VeryGood=\nLove it,=Excellent=\nGood for sheer coverage,=VeryGood=\nWho wrote these 5 star reviews!???,=Poor=\nDid not do the job,=Unsatisfactory=\nWish I found this sooner,=Excellent=\nIt works!,=Excellent=\n\"\\OK\\\"\"--as far as it goes, that is\"\"\",=Good=\nJust Ok,=Good=\nFantastic!,=Excellent=\nNot quite as effective as promised,=VeryGood=\nIt's alright,=Good=\nJust ok,=Poor=\nHad High Hopes,=Poor=\nNot for sensitive skin!!!,=Poor=\nI see no difference . . .,=Good=\n\"2.5 stars...maybe, 3 stars if you use this as a moisturizer?!\",=Unsatisfactory=\n\"They're so long, it's comedic\",=Poor=\nHmmm,=Poor=\n\"It works, but at what price?\",=Good=\nNot for me,=Unsatisfactory=\nBEWARE NOT FOR MEN OF AGE 34 AND BELOW,=Poor=\nI HATE IT,=Poor=\nOk tinted moisturizer,=VeryGood=\nNice but Pricey,=Good=\nNOT A FAN,=Unsatisfactory=\nRich but light conditioner,=Excellent=\nSlimey,=Poor=\nLove it,=Excellent=\nEfficient but...,=Good=\ndont buy,=Poor=\nNot really sure what it does.,=Unsatisfactory=\nFake tan powder?,=Poor=\n\"Look like original, but inside is like water, not only didn't last, didn't smell like eau de parfum....\",=Unsatisfactory=\nIts ok,=Unsatisfactory=\n\"Love these, but they're breakable\",=VeryGood=\nIts OK,=Good=\n:/,=Unsatisfactory=\nTerrible,=Poor=\nA must have!,=Excellent=\nhair vitamin,=Unsatisfactory=\n\"Great product, affordable salon care for your hair!\",=VeryGood=\nI've been using it for 4 days,=Unsatisfactory=\nNot so dark.,=Good=\nSimply Falls Flat,=Unsatisfactory=\nLove the color,=Unsatisfactory=\ngreat product,=Excellent=\nseaweed crazy,=Excellent=\n\"Other than murky water and a nice scent, wife couldn't tell a difference.\",=Good=\nnot soft,=Poor=\n\"Not impressed with this product, unfortunately....\",=Poor=\nThe Greatest Brush,=Excellent=\nNot really good at all,=Unsatisfactory=\n\"Coconut frosting is nice, but not my favorite.\",=VeryGood=\nOk but not great,=Good=\nDon't waste your money please,=Poor=\nComplete Waste of Money,=Good=\nThe reason for the high price,=Poor=\nSMELLS GREAT AND WORKS WONDERS...,=Excellent=\nit's alright,=Unsatisfactory=\nI love Blue!! but..............,=Good=\nStyling hair spray.,=VeryGood=\nGood but,=VeryGood=\n\"Smells good, but Axe products are tested on animals\",=Good=\nJUST.....EH,=Unsatisfactory=\nOne speed.....slow.,=Unsatisfactory=\nWorks well.,=VeryGood=\n\"Not for relaxed, or textured hair\",=Unsatisfactory=\nnever AGAIN badd product yucky,=Poor=\nPros: lasts for ever. Cons: strong scent.,=VeryGood=\nIt's ok,=Unsatisfactory=\n\"Not for me, but not necessarily a bad product.\",=Unsatisfactory=\nWorks for Me!,=VeryGood=\nNot for me,=Poor=\nNo quarrles,=VeryGood=\nI'd give them a -5 stars if I could!,=Poor=\n\"Great, Great, Great!!\",=Excellent=\nnot for me,=Unsatisfactory=\nDidn't  do anything for wrinkles,=Good=\nLike product but sprayer came off,=Poor=\nLong-term results but no miracle pill,=Good=\nOnly for established users,=Good=\n\"Great for use with Girdle, Waist trimmer/trainer\",=VeryGood=\nNot for me.,=Unsatisfactory=\nWorked great!,=VeryGood=\nNot impressed,=Unsatisfactory=\nNot worth the money,=Unsatisfactory=\nGood,=Good=\n\"skeptical, but they work\",=Excellent=\nBest body scrub around,=Excellent=\n\"WELL, WELL WELL.....\",=Unsatisfactory=\nSee no difference,=Good=\nGREAT!!!,=Excellent=\ngreat stuff,=Excellent=\nI don't love it,=Good=\nUdderly Useful.,=Excellent=\nZeno = Costly Heat,=Unsatisfactory=\n\"Great Product, smells a bit off\",=VeryGood=\nEhhh,=Unsatisfactory=\n\"Light night cream, but fragranced\",=Good=\nDidn't work for me,=Unsatisfactory=\nGreat product in a poor container,=VeryGood=\nPurchased in Nov. Died in Jan!!!!,=Unsatisfactory=\n\"Nothing special, but not bad\",=Good=\nLove this stuff,=VeryGood=\nLove Nivea!,=VeryGood=\nVoluminous Mascara,=Unsatisfactory=\nBoring!,=Unsatisfactory=\nNice formula but the fragrance...,=Good=\nused this for my sons yeast infection. worked wonders ...,=Excellent=\nLove this scent,=Excellent=\npricey,=Good=\nI like my old one better,=Unsatisfactory=\nNot the best for my hair,=Good=\n\"Nothing special, but fast shipping\",=Good=\nworks great,=Excellent=\nA waste.,=Poor=\n\"Good, thick conditioner\",=VeryGood=\n\"pricey, but effective\",=VeryGood=\nSeriously tough hair dryer,=VeryGood=\nWorks Wonders,=Excellent=\nDo not buy,=Poor=\nGood for Light Skin Tones,=VeryGood=\nMaybe its my hair type,=Unsatisfactory=\nAA type Hair Review,=VeryGood=\ndont bother,=Poor=\nnot good,=Poor=\nNot great,=Unsatisfactory=\nRoC Retinol Correxion Deep Wrinkle Night Cream,=VeryGood=\nNatural Instincts,=Excellent=\nI remembered it having more volume,=Good=\n\"Nice Feel, Interesting Smell\",=Good=\nDecent moisturizer - sweet scent reminiscent of Sweet Tarts/Candy Hearts,=Good=\nIt's mostly alcohol........,=Unsatisfactory=\nwas a bit too greasy for me,=Good=\nto bright,=Good=\nNot Bad,=Good=\nModerate coverage.,=VeryGood=\nGreat for kinky curly naturals,=VeryGood=\nlove,=Excellent=\nDissappointed,=Unsatisfactory=\nGood product. Great scent.,=VeryGood=\nMOISTURE!,=VeryGood=\ngreat soap,=Excellent=\nGood Cream.,=VeryGood=\nhelpful for healing irritated skin,=VeryGood=\nnasty,=Poor=\nChristmas,=Excellent=\n\"A clean, fresh scent\",=Excellent=\nHad to Return,=Unsatisfactory=\nCheap & works well,=Excellent=\n\"Good moisturizer, even if you're not pregnant\",=VeryGood=\nSpin Pins are better!,=Unsatisfactory=\nAwful,=Poor=\nworks,=VeryGood=\nSo So product,=Unsatisfactory=\n\"nice, soft and clean\",=VeryGood=\n\"Gets Hair Clean, But Is Very Strong\",=Poor=\nworks great!,=Excellent=\nplump side broke off,=Good=\nAverage serum - great for the price,=VeryGood=\nIt makes your hair a dark orange.,=Poor=\nMeh.,=Unsatisfactory=\nPoor quality,=Unsatisfactory=\nClassy color,=Excellent=\nI wanted to love it but it gave me raccoon eyes,=Unsatisfactory=\nAnti-Residue and Anti-Flakes!,=Excellent=\nLoreal Excellence Creme 8.5 Champagne Blonde,=Good=\n\"yes, you need these!\",=VeryGood=\nGreat Soap,=Excellent=\nGood conditioner for thick hair,=VeryGood=\nLove this as a toner,=Excellent=\nWorks great!,=Excellent=\nNo white cast!!!,=VeryGood=\nMelted Cr*p,=Poor=\nSweet Orange and Lemon grass is not Sweet Orange,=Unsatisfactory=\nLeft me with greasy gunky hair,=Unsatisfactory=\nReceived my product early,=Good=\nworst curler I've tried,=Poor=\nCheesy cheap cheap.,=Poor=\n\"Try it, at least once\",=VeryGood=\nGreat,=Excellent=\nNYX green liquid concealer,=Unsatisfactory=\nDoesn't blend well,=Unsatisfactory=\ncheap,=Poor=\nLove this thing,=Good=\n0 stars!  Should be a lawsuit against this company for defective product!,=Poor=\nDisappointed,=Good=\nJust ok,=Good=\nStill one of my all time favorite creams,=VeryGood=\nI like it but...,=Good=\nYes for decades,=Excellent=\nSilky and Smooth,=Excellent=\ngreat,=VeryGood=\nwaste!,=Poor=\nsweet and musky,=Good=\nNot for me!,=Unsatisfactory=\nclairol natural instincts med golden brown,=Poor=\nSHEA BUTTER GREAT FOR NATURAL HAIR,=VeryGood=\nnot good,=Poor=\nBreakouts and spots,=Poor=\nI lost so much hair! I followed the instructions ...,=Poor=\nGiorgio Armani Acqua Di Gio Pour Homme 3.4 oz Eau de Toilette Spray,=Excellent=\nterrible excuse for makeup,=Poor=\n\"Not effective for me, made nails brittle\",=Poor=\ni dont like it,=Poor=\n\"I have no complaints, but so far I see no improvement.\",=Good=\nEffective product for controlling acne,=VeryGood=\nUse as directed,=VeryGood=\nOlay moisturizer with sunscreen,=Excellent=\nAwesome!,=Excellent=\nNo Poo,=VeryGood=\ngoooood,=Excellent=\n\"Worthless by itself, Great with other items\",=VeryGood=\nDon't get all the fuss,=Good=\nGood Buy,=VeryGood=\n\"No allergies.  Replaces \\Loving Care\\\"\"\"\"\",=Excellent=\nAverage at best.,=Good=\nMy Favorite Gloss :),=VeryGood=\nDarker,=VeryGood=\ndisappointed,=Unsatisfactory=\n\"Nice smelling shampoo, but a bit dying\",=Good=\nit workes,=VeryGood=\nOily feeling after rinsing,=Good=\nNot Rich and Emollient Enough; Upset the Skin of My Eye Area,=Poor=\nDisappointing,=Unsatisfactory=\n2 out of 3,=Good=\nNot for Me,=Unsatisfactory=\nI loved this!,=VeryGood=\nits good,=Excellent=\nLovely Skin,=Excellent=\nGreat Face Cleanser,=VeryGood=\n?,=Unsatisfactory=\nWonderful!,=Excellent=\nfavorite highlighter,=VeryGood=\nNice,=Good=\nNot impressed,=Poor=\nYou too can look like a party animal with nice red eyes,=Poor=\n\"Too many parabens... Parabens can mimic the hormone estrogen, which is known to play a role in the development of breast cancers\",=Poor=\nGreat product,=Excellent=\n\"Motions at Home Works Fairly Well on my Short, Thin Hair\",=Good=\nOffers light styling for my fine hair but smells awful,=Unsatisfactory=\ndid not work at all,=Poor=\nNot for my curly hair,=Good=\nIt didn't work as  I was expected,=Unsatisfactory=\nGreat for Blondes,=VeryGood=\nDid Not Redefine...,=Unsatisfactory=\nladies if you have 4C hair......,=Excellent=\nIf you like lemon....,=VeryGood=\nNo better than any other,=Good=\nDermablend Cover Creme,=VeryGood=\nIt seems to work pretty well!,=VeryGood=\nNot impressed,=Poor=\nGreat for no wash days,=VeryGood=\n"
  },
  {
    "path": "data/README.md",
    "content": "The code is made to work with csv's with a column label and a column text.\n\nIf you respect this structure, the code should work!\n\n"
  },
  {
    "path": "interact.py",
    "content": "\"\"\"\nRuns a script to interact with a model using the shell.\n\"\"\"\nimport os\nfrom argparse import ArgumentParser, Namespace\n\nimport yaml\n\nfrom classifier import Classifier\n\n\ndef load_model_from_experiment(experiment_folder: str):\n    \"\"\"Function that loads the model from an experiment folder.\n    :param experiment_folder: Path to the experiment folder.\n    Return:\n        - Pretrained model.\n    \"\"\"\n    hparams_file = experiment_folder + \"/hparams.yaml\"\n    hparams = yaml.load(open(hparams_file).read(), Loader=yaml.FullLoader)\n\n    checkpoints = [\n        file\n        for file in os.listdir(experiment_folder + \"/checkpoints/\")\n        if file.endswith(\".ckpt\")\n    ]\n    checkpoint_path = experiment_folder + \"/checkpoints/\" + checkpoints[-1]\n    model = Classifier.load_from_checkpoint(\n        checkpoint_path, hparams=Namespace(**hparams)\n    )\n    # Make sure model is in prediction mode\n    model.eval()\n    model.freeze()\n    return model\n\n\nif __name__ == \"__main__\":\n    parser = ArgumentParser(\n        description=\"Minimalist Transformer Classifier\", add_help=True\n    )\n    parser.add_argument(\n        \"--experiment\",\n        required=True,\n        type=str,\n        help=\"Path to the experiment folder.\",\n    )\n    hparams = parser.parse_args()\n    print(\"Loading model...\")\n    model = load_model_from_experiment(hparams.experiment)\n    print(model)\n\n    while 1:\n        print(\"Please write a sentence or quit to exit the interactive shell:\")\n        # Get input sentence\n        input_sentence = input(\"> \")\n        if input_sentence == \"q\" or input_sentence == \"quit\":\n            break\n        prediction = model.predict(sample={\"text\": input_sentence})\n        print(prediction)\n"
  },
  {
    "path": "requirements.txt",
    "content": "pandas==1.1.1\ntensorboard==2.2.0\ntorch==1.6.0\ntransformers==3.1.0\npytorch-lightning==0.9.0\npytorch-nlp==0.5.0\nscikit-learn==0.24.2"
  },
  {
    "path": "test.py",
    "content": "\"\"\"\nTests model.\n\"\"\"\nimport os\nimport json\nfrom argparse import ArgumentParser, Namespace\n\nimport pandas as pd\nimport yaml\nfrom sklearn.metrics import classification_report\nfrom tqdm import tqdm\n\nfrom classifier import Classifier\n\n\ndef load_model_from_experiment(experiment_folder: str):\n    \"\"\"Function that loads the model from an experiment folder.\n    :param experiment_folder: Path to the experiment folder.\n    Return:\n        - Pretrained model.\n    \"\"\"\n    hparams_file = experiment_folder + \"/hparams.yaml\"\n    hparams = yaml.load(open(hparams_file).read(), Loader=yaml.FullLoader)\n\n    checkpoints = [\n        file\n        for file in os.listdir(experiment_folder + \"/checkpoints/\")\n        if file.endswith(\".ckpt\")\n    ]\n    checkpoint_path = experiment_folder + \"/checkpoints/\" + checkpoints[-1]\n    model = Classifier.load_from_checkpoint(\n        checkpoint_path, hparams=Namespace(**hparams)\n    )\n    # Make sure model is in prediction mode\n    model.eval()\n    model.freeze()\n    return model\n\n\nif __name__ == \"__main__\":\n    parser = ArgumentParser(\n        description=\"Minimalist Transformer Classifier\", add_help=True\n    )\n    parser.add_argument(\n        \"--experiment\",\n        required=True,\n        type=str,\n        help=\"Path to the experiment folder.\",\n    )\n    parser.add_argument(\n        \"--test_data\",\n        required=True,\n        type=str,\n        help=\"Path to the test data.\",\n    )\n    parser.add_argument(\n        \"--store_predictions\", \"-o\",\n        required=False,\n        type=str,\n        help=\"Path to store predictions.\",\n    )\n    hparams = parser.parse_args()\n    print(\"Loading model...\")\n    model = load_model_from_experiment(hparams.experiment)\n    # print(model)\n\n    testset = pd.read_csv(hparams.test_data).to_dict(\"records\")\n    predictions = [\n        model.predict(sample)\n        for sample in tqdm(testset, desc=\"Testing on {}\".format(hparams.test_data))\n    ]\n    y_pred = [o[\"predicted_label\"] for o in predictions]\n    y_true = [s[\"label\"] for s in testset]\n    print(classification_report(y_true, y_pred))\n    print (\"saving predictions at: {}\".format(hparams.store_predictions))\n\n    with open(hparams.store_predictions, 'w', encoding='utf-8') as f:\n        json.dump(predictions, f, ensure_ascii=False, indent=4)\n\n"
  },
  {
    "path": "tokenizer.py",
    "content": "# -*- coding: utf-8 -*-\nimport torch\nfrom transformers import AutoTokenizer\n\nfrom torchnlp.encoders import Encoder\nfrom torchnlp.encoders.text import stack_and_pad_tensors\nfrom torchnlp.encoders.text.text_encoder import TextEncoder\n\n\nclass Tokenizer(TextEncoder):\n    \"\"\"\n    Wrapper arround BERT tokenizer.\n    \"\"\"\n\n    def __init__(self, pretrained_model) -> None:\n        self.enforce_reversible = False\n        self.tokenizer = AutoTokenizer.from_pretrained(pretrained_model)\n        self.itos = self.tokenizer.ids_to_tokens\n\n    @property\n    def unk_index(self) -> int:\n        \"\"\"Returns the index used for the unknown token.\"\"\"\n        return self.tokenizer.unk_token_id\n\n    @property\n    def bos_index(self) -> int:\n        \"\"\"Returns the index used for the begin-of-sentence token.\"\"\"\n        return self.tokenizer.cls_token_id\n\n    @property\n    def eos_index(self) -> int:\n        \"\"\"Returns the index used for the end-of-sentence token.\"\"\"\n        return self.tokenizer.sep_token_id\n\n    @property\n    def padding_index(self) -> int:\n        \"\"\"Returns the index used for padding.\"\"\"\n        return self.tokenizer.pad_token_id\n\n    @property\n    def vocab(self) -> list:\n        \"\"\"\n        Returns:\n            list: List of tokens in the dictionary.\n        \"\"\"\n        return self.tokenizer.vocab\n\n    @property\n    def vocab_size(self) -> int:\n        \"\"\"\n        Returns:\n            int: Number of tokens in the dictionary.\n        \"\"\"\n        return len(self.itos)\n\n    def encode(self, sequence: str) -> torch.Tensor:\n        \"\"\"Encodes a 'sequence'.\n        :param sequence: String 'sequence' to encode.\n\n        :return: torch.Tensor with Encoding of the `sequence`.\n        \"\"\"\n        sequence = TextEncoder.encode(self, sequence)\n        return self.tokenizer(sequence, return_tensors=\"pt\")[\"input_ids\"][0]\n\n    def batch_encode(self, sentences: list) -> (torch.Tensor, torch.Tensor):\n        \"\"\"\n        :param iterator (iterator): Batch of text to encode.\n        :param **kwargs: Keyword arguments passed to 'encode'.\n\n        Returns\n            torch.Tensor, torch.Tensor: Encoded and padded batch of sequences; Original lengths of\n                sequences.\n        \"\"\"\n        tokenizer_output = self.tokenizer(\n            sentences,\n            return_tensors=\"pt\",\n            padding=True,\n            return_length=True,\n            return_token_type_ids=False,\n            return_attention_mask=False,\n            truncation=\"only_first\",\n            max_length=512,\n        )\n        return tokenizer_output[\"input_ids\"], tokenizer_output[\"length\"]\n"
  },
  {
    "path": "training.py",
    "content": "\"\"\"\nRuns a model on a single node across N-gpus.\n\"\"\"\nimport argparse\nimport os\nfrom datetime import datetime\n\nfrom classifier import Classifier\nfrom pytorch_lightning import Trainer\nfrom pytorch_lightning.callbacks import EarlyStopping, ModelCheckpoint\nfrom pytorch_lightning.loggers import LightningLoggerBase, TensorBoardLogger\nfrom torchnlp.random import set_seed\n\n\ndef main(hparams) -> None:\n    \"\"\"\n    Main training routine specific for this project\n    :param hparams:\n    \"\"\"\n    set_seed(hparams.seed)\n    # ------------------------\n    # 1 INIT LIGHTNING MODEL AND DATA\n    # ------------------------\n    model = Classifier(hparams)\n\n    # ------------------------\n    # 2 INIT EARLY STOPPING\n    # ------------------------\n    early_stop_callback = EarlyStopping(\n        monitor=hparams.monitor,\n        min_delta=0.0,\n        patience=hparams.patience,\n        verbose=True,\n        mode=hparams.metric_mode,\n    )\n\n    # ------------------------\n    # 3 INIT LOGGERS\n    # ------------------------\n    # Tensorboard Callback\n    tb_logger = TensorBoardLogger(\n        save_dir=\"experiments/\",\n        version=\"version_\" + datetime.now().strftime(\"%d-%m-%Y--%H-%M-%S\"),\n        name=\"\",\n    )\n\n    # Model Checkpoint Callback\n    ckpt_path = os.path.join(\n        \"experiments/\",\n        tb_logger.version,\n        \"checkpoints\",\n    )\n\n    # --------------------------------\n    # 4 INIT MODEL CHECKPOINT CALLBACK\n    # -------------------------------\n    checkpoint_callback = ModelCheckpoint(\n        filepath=ckpt_path,\n        save_top_k=hparams.save_top_k,\n        verbose=True,\n        monitor=hparams.monitor,\n        period=1,\n        mode=hparams.metric_mode,\n        save_weights_only=True,\n    )\n\n    # ------------------------\n    # 5 INIT TRAINER\n    # ------------------------\n    trainer = Trainer(\n        logger=tb_logger,\n        checkpoint_callback=True,\n        early_stop_callback=early_stop_callback,\n        gradient_clip_val=1.0,\n        gpus=hparams.gpus,\n        log_gpu_memory=\"all\",\n        deterministic=True,\n        check_val_every_n_epoch=1,\n        fast_dev_run=False,\n        accumulate_grad_batches=hparams.accumulate_grad_batches,\n        max_epochs=hparams.max_epochs,\n        min_epochs=hparams.min_epochs,\n        val_check_interval=hparams.val_check_interval,\n        distributed_backend=\"dp\",\n    )\n    # ------------------------\n    # 6 START TRAINING\n    # ------------------------\n    trainer.fit(model, model.data)\n\n\nif __name__ == \"__main__\":\n    # ------------------------\n    # TRAINING ARGUMENTS\n    # ------------------------\n    # these are project-wide arguments\n    parser = argparse.ArgumentParser(\n        description=\"Minimalist Transformer Classifier\",\n        add_help=True,\n    )\n    parser.add_argument(\"--seed\", type=int, default=3, help=\"Training seed.\")\n    parser.add_argument(\n        \"--save_top_k\",\n        default=1,\n        type=int,\n        help=\"The best k models according to the quantity monitored will be saved.\",\n    )\n    # Early Stopping\n    parser.add_argument(\n        \"--monitor\", default=\"val_acc\", type=str, help=\"Quantity to monitor.\"\n    )\n    parser.add_argument(\n        \"--metric_mode\",\n        default=\"max\",\n        type=str,\n        help=\"If we want to min/max the monitored quantity.\",\n        choices=[\"auto\", \"min\", \"max\"],\n    )\n    parser.add_argument(\n        \"--patience\",\n        default=2,\n        type=int,\n        help=(\n            \"Number of epochs with no improvement \"\n            \"after which training will be stopped.\"\n        ),\n    )\n    parser.add_argument(\n        \"--min_epochs\",\n        default=1,\n        type=int,\n        help=\"Limits training to a minimum number of epochs\",\n    )\n    parser.add_argument(\n        \"--max_epochs\",\n        default=5,\n        type=int,\n        help=\"Limits training to a max number number of epochs\",\n    )\n\n    # Batching\n    parser.add_argument(\n        \"--batch_size\", default=6, type=int, help=\"Batch size to be used.\"\n    )\n    parser.add_argument(\n        \"--accumulate_grad_batches\",\n        default=2,\n        type=int,\n        help=(\n            \"Accumulated gradients runs K small batches of size N before \"\n            \"doing a backwards pass.\"\n        ),\n    )\n\n    # gpu args\n    parser.add_argument(\"--gpus\", type=int, default=1, help=\"How many gpus\")\n    parser.add_argument(\n        \"--val_check_interval\",\n        default=1.0,\n        type=float,\n        help=(\n            \"If you don't want to use the entire dev set (for debugging or \"\n            \"if it's huge), set how much of the dev set you want to use with this flag.\"\n        ),\n    )\n\n    # each LightningModule defines arguments relevant to it\n    parser = Classifier.add_model_specific_args(parser)\n    hparams = parser.parse_args()\n\n    # ---------------------\n    # RUN TRAINING\n    # ---------------------\n    main(hparams)\n"
  },
  {
    "path": "utils.py",
    "content": "# -*- coding: utf-8 -*-\nfrom datetime import datetime\n\nimport torch\n\n\ndef mask_fill(\n    fill_value: float,\n    tokens: torch.tensor,\n    embeddings: torch.tensor,\n    padding_index: int,\n) -> torch.tensor:\n    \"\"\"\n    Function that masks embeddings representing padded elements.\n    :param fill_value: the value to fill the embeddings belonging to padded tokens.\n    :param tokens: The input sequences [bsz x seq_len].\n    :param embeddings: word embeddings [bsz x seq_len x hiddens].\n    :param padding_index: Index of the padding token.\n    \"\"\"\n    padding_mask = tokens.eq(padding_index).unsqueeze(-1)\n    return embeddings.float().masked_fill_(padding_mask, fill_value).type_as(embeddings)\n"
  }
]